/* =====================================================
   LOCAL POPPINS FONT FACE DECLARATIONS
   Path: /Fonts/Poppins-*.ttf
   ===================================================== */
@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/Fonts/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* -- CSS Variables (exact Tailwind theme tokens) -- */
:root {
  --background: #ffffff;
  --foreground: #1a2636;
  --primary: #1a2d50;
  --primary-foreground: #ffffff;
  --secondary: #f0f4f8;
  --secondary-foreground: #1a2d50;
  --muted: #f3f4f6;
  --muted-foreground: #64748b;
  --accent: #E83161;
  --accent-foreground: #ffffff;
  --border: #dfe4ea;
  --kp-navy: #1a2d50;
  --kp-navy-dark: #111d33;
  --kp-pink: #E83161;
  --kp-pink-hover: #E83161;
  --kp-gray-light: #f7f8f9;
  --kp-gray-medium: #e8eaed;
  --radius: 0.5rem;
}

/* -- Base Reset -- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html,
body {
  max-width: 100vw;
}

.page-overflow-wrapper {
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
} */

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

/* -- Skip Link -- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* -- Container -- */
.kp-container {
  width: 1640px;
  margin: 0 auto;
}

@media (max-width: 711.98px) {
  .kp-container {
    width: 322px !important;
  }

  .site-header {
    padding: 4px 0 !important;
  }
}

/* Mobile-only: show arrow icon on the left for buttons in the "We're KeyPar." about section
   Do not change desktop/PC styles. */
@media (max-width: 767.98px) {

  .about-section .about-btn-outline,
  .about-section .btn.btn-outline-dark {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    position: relative !important;
  }

  .about-section .about-btn-outline svg,
  .about-section .btn.btn-outline-dark svg {
    display: inline-block !important;
    width: 10px !important;
    height: 10px !important;
    margin-right: 0.5rem !important;
    flex: 0 0 auto !important;
    transform: none !important;
    position: absolute !important;
    left: 20px !important;
  }

  .about-section .about-btn-outline.about-btn-pink svg {
    fill: #E83161 !important;
  }

  .about-section .btn.btn-outline-dark svg {
    fill: #183158 !important;
  }
}

/* @media (min-width: 1024px) {
  .kp-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
} */

/* -- Buttons -- */
.kp-btn-pink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color 0.2s;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}

.kp-btn-pink:hover {
  background-color: var(--kp-pink-hover);
}

.kp-btn-pink.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}

.kp-btn-pink.btn-full {
  width: 100%;
  justify-content: center;
}

/* Reusable hover helper
   Usage:
   class="kp-hover-helper"
   style="--kp-hover-bg:#183158; --kp-hover-color:#fff; --kp-hover-border:#183158; --kp-hover-icon:#fff;" */
.kp-hover-helper {
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.kp-hover-helper:hover {
  background: var(--kp-hover-bg, inherit) !important;
  color: var(--kp-hover-color, inherit) !important;
  border-color: var(--kp-hover-border, var(--kp-hover-bg, currentColor)) !important;
}

.kp-hover-helper:hover svg path {
  fill: var(--kp-hover-icon, var(--kp-hover-color, currentColor)) !important;
}

.kp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--primary-foreground);
  background: transparent;
  font-size: 0.875rem;
  transition: background-color 0.2s;
}

.kp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* -- Offer Banner CTA Button -- */
.offer-banner-btn {
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.offer-banner-btn:hover {
  background-color: #ffffff !important;
  /* transform: translateY(-2px); */
  /* box-shadow: 0 6px 20px rgba(232, 49, 97, 0.35); */
  color: #173158 !important;
}

.offer-banner-btn:hover svg path {
  fill: #E73161;
}

.kp-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #173158;
}

@media (min-width: 768px) {
  .kp-section-title {
    font-size: 48px;
  }
}

/* -- Nav Link -- */
.kp-nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #5D6F8A;
  transition: color 0.2s;
  cursor: pointer;
}

/* .kp-nav-link:hover {
  color: var(--accent);
} */

.kp-nav-link.active {
  color: #173158;
  font-weight: 600;
}

/* -- Gradient -- */
.kp-gradient {
  background: linear-gradient(135deg, var(--kp-pink), #7c3aed);
}

/* -- Premium Mobile Banner Redesign -- */
.kp-mobile-banner-top {
  width: 100% !important;
  max-width: 323px !important;
  height: 40px !important;
  background: #173158 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 15px !important;
  margin-bottom: 0px !important;
}

.kp-mobile-banner-top span {
  font-size: 14px !important;
  font-weight: 600 !important;
}

.kp-mobile-breadcrumb {
  font-size: 10px !important;
  color: #5D6F8A !important;
  margin: 12px 0px 9px !important;
}

.kp-mobile-banner-content {
  width: 100% !important;
  max-width: 322px !important;
  height: 248px !important;
  background: linear-gradient(36.58deg, #173158 16.44%, #E83161 77.19%) !important;
  display: flex !important;
  flex-direction: column !important;
  /* justify-content: center !important; */
  padding: 30px 30px !important;
  margin-bottom: 10px !important;
}

.kp-mobile-banner-content h2 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 12px !important;
}

.kp-mobile-banner-content p {
  font-size: 12px !important;
  color: #FFFFFF !important;
  opacity: 0.9 !important;
  margin-bottom: 25px !important;
}

.kp-mobile-banner-content a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: auto;
}

.kp-mobile-banner-img-container {
  width: 100% !important;
  max-width: 322px !important;
  height: 322px !important;
  background: #F7F8F9 !important;
  position: relative !important;
  margin-bottom: 10px !important;
}

.kp-mobile-banner-img-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.kp-mobile-banner-cta {
  width: 100% !important;
  max-width: 260px !important;
  height: 48px !important;
  background: #E83161 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.kp-mobile-whatsapp-box {
  width: 60px !important;
  height: 60px !important;
  background: #173158 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  bottom: 0 !important;
  right: -19px !important;
  border: 2px solid #fff;
  z-index: 4;
}

.footer-mob-cta .footer-mob-cta-icon,
.footer-mob-cta .footer-mob-cta-label {
  background: #E83161;
  color: #fff;
  transition: background-color 0.2s, color 0.2s;
}

.footer-mob-cta:hover .footer-mob-cta-icon,
.footer-mob-cta:hover .footer-mob-cta-label,
.footer-mob-cta:active .footer-mob-cta-icon,
.footer-mob-cta:active .footer-mob-cta-label {
  background: #FFFFFF;
  color: #173158;
}

.footer-mob-cta:hover .bag-body-path,
.footer-mob-cta:active .bag-body-path {
  fill: #E73161 !important;
  stroke: #E73161 !important;
}

.footer-mob-cta:hover .bag-line-path,
.footer-mob-cta:active .bag-line-path,
.footer-mob-cta:hover .bag-loop-path,
.footer-mob-cta:active .bag-loop-path {
  stroke: #FFFFFF !important;
}

.footer-mob-cta:hover .whatsapp-bg-path,
.footer-mob-cta:active .whatsapp-bg-path {
  fill: #E73161 !important;
  stroke: #E73161 !important;
}

.footer-mob-cta:hover .whatsapp-phone-path,
.footer-mob-cta:active .whatsapp-phone-path {
  fill: #FFFFFF !important;
}

.footer-mobile-wrapper .kp-hover-helper svg path {
  transition: fill 0.2s ease;
}

.footer-mobile-wrapper .kp-hover-helper:hover svg path {
  fill: #FFFFFF !important;
}

/* -------------------------------------------
   TOPBAR
   ------------------------------------------- */
.topbar {
  background-color: #173158;
  color: #FFFFFF;
  padding: 0.425rem 0;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar .promo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1rem;
}

.topbar .promo-area button {
  color: var(--primary-foreground);
  opacity: 1;
  transition: opacity 0.2s;
}

.topbar .promo-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  color: var(--accent);
}

.topbar .promo-arrow-btn i {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  color: #ff2a78;
}

.topbar .promo-area button:hover {
  opacity: 0.7;
}

.topbar .promo-text {
  font-size: 16px;
  font-weight: 600;
  margin: 0 45px;
}

@media (max-width: 575.98px) {
  .topbar {
    padding: 0.375rem 0;
    height: 30px;
  }

  .topbar .promo-text {
    font-size: 12px;
    margin: 0 20px;
  }

  .topbar .promo-area {
    gap: 0.5rem;
  }

  .topbar .promo-area button {
    font-size: 0.75rem;
  }
}

.topbar .social-links {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.topbar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: #ffffff;
  color: var(--kp-navy);
  /* border-radius: 0.25rem; */
  transition: background 0.2s, transform 0.2s;
  font-size: 1.25rem;
}

.topbar .social-links a svg path {
  transition: fill 0.2s;
}

/* All social icons → white icon on pink bg on hover */
.topbar .social-links a:nth-child(1):hover svg path,
.topbar .social-links a:nth-child(2):hover svg path,
.topbar .social-links a:nth-child(3):hover svg path {
  fill: #173158 !important;
}

.topbar .social-links a:hover {
  background: #E73161;
  transform: scale(1.1);
}

.topbar .social-links i {
  width: auto;
  height: auto;
}

@media (min-width: 768px) {
  .topbar .social-links {
    display: flex;
  }
}

/* -- Sticky Header Wrapper -- */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  transition: top 0.3s ease-in-out !important;
}

body.scroll-down .sticky-header-wrapper {
  top: -180px !important;
}

@media (max-width: 991.98px) {
  body.scroll-down .sticky-header-wrapper {
    top: -100px !important;
  }

  body.scroll-down .sticky-header-wrapper:has(.cat-mobile-top-bar) {
    top: -145px !important;
  }
}

/* Sticky Scroll Transitions for Breadcrumbs & Filters */
.brand-breadcrumb,
.kp-mobile-breadcrumb,
.breadcrumb-nav {
  transition: top 0.3s ease-in-out !important;
}

body.scroll-down .brand-breadcrumb,
body.scroll-down .kp-mobile-breadcrumb,
body.scroll-down .breadcrumb-nav {
  top: -200px !important;
}

.brand-filter-shell,
.mobile-filter-buttons-sticky {
  transition: top 0.3s ease-in-out !important;
}

body.scroll-down .brand-filter-shell,
body.scroll-down .mobile-filter-buttons-sticky {
  top: 0 !important;
  z-index: 919 !important;
}

body.has-topbar.scroll-down::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #173158;
  z-index: 1002;
  pointer-events: none;
}

body.has-topbar.scroll-down .brand-filter-shell,
body.has-topbar.scroll-down .mobile-filter-buttons-sticky {
  top: 5px !important;
}

/* -------------------------------------------
   HEADER
   ------------------------------------------- */
.site-header {
  background: var(--background);
  /* border-bottom: 1px solid var(--border); */
  padding: 1.15rem 0;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

.site-header .header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  min-width: 0;
  flex: 1;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-header .logo-link img {
  height: 72px;
  width: 263px;
}

.site-header .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: none;
}

@media (min-width: 576px) {
  .site-header .logo-text {
    display: inline;
  }
}

.site-header .search-box {
  display: none;
  flex: 0 1 400px;
  max-width: 400px;
}

@media (min-width: 768px) {
  .site-header .search-box {
    display: flex;
  }
}

.site-header .search-box .search-wrap {
  position: relative;
  width: 100%;
}

.site-header .search-box .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #173158;
}

.site-header .search-box input {
  width: 100%;
  min-height: 2.35rem;
  padding: 0.675rem 1rem 0.675rem 3.7rem;
  border-radius: 0;
  border: 1px solid #BAC2CD;
  background: #fff;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}

.site-header .search-box input:focus {
  box-shadow: 0 0 0 1px #cfd5de;
}

/* Live search dropdown */
.live-search-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
  max-height: 420px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.live-search-dropdown.show {
  display: block;
}

.live-search-group {
  padding: 0.25rem 1rem;
}

.live-search-group-title {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

.live-search-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
  color: var(--foreground);
  border-radius: 0.375rem;
  transition: background 0.15s;
}

.live-search-item:hover {
  background: var(--muted);
  color: var(--accent);
}

.live-search-item img {
  width: 36px;
  height: 36px;
  border-radius: 0.375rem;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.live-search-item .search-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.375rem;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted-foreground);
  font-size: 1rem;
}

.live-search-item .search-item-name {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
}

.live-search-item .search-item-price {
  font-size: 0.6875rem;
  color: var(--accent);
  font-weight: 600;
}

.live-search-item .search-item-meta {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

.live-search-empty,
.live-search-loading {
  padding: 1.25rem 1rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.8125rem;
}

.mobile-search-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-search-panel.show {
  display: block;
}

.mobile-search-panel-inner {
  padding: 0.875rem 1rem;
}

.mobile-search-panel-top .search-wrap input {
  width: 100%;
}

.mobile-search-close {
  border: 0;
  background: transparent;
  color: #173158;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

body.mobile-search-open {
  overflow: hidden;
}

.mobile-search-panel .live-search-dropdown {
  left: 0;
  right: 0;
  max-height: calc(100vh - 88px);
}

.site-header .util-nav {
  display: none;
  align-items: center;
  gap: 30px;
  margin: 0 30px;
}

@media (min-width: 992px) {
  .site-header .util-nav {
    display: flex;
  }
}

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.site-header .header-actions>.kp-nav-link {
  display: inline-flex;
  align-items: center;
  /* gap: 0.45rem; */
  color: #5D6F8A;
  font-size: 0.95rem;
  margin-right: 50px;
}

.site-header .header-actions>.kp-nav-link i {
  color: var(--accent);
}

.site-header .header-actions>.kp-nav-link::after {
  font-family: 'bootstrap-icons';
  font-size: 0.75rem;
  color: #687689;
}

.header-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: #E83161;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s;
  position: relative;
  padding: 0;
  margin-right: 2px;
}

.header-cart-btn:hover {
  background: var(--kp-pink-hover);
}

.site-header .header-b2b-group {
  display: inline-flex;
}

.site-header .header-b2b-group:hover .header-cart-btn,
.site-header .header-b2b-group:hover .signup-btn {
  background: #173158;
}

.site-header .header-actions {
  gap: 0;
}

@media (max-width: 991.98px) {
  .site-header .header-actions {
    gap: 8px;
  }
}

.site-header .cart-btn {
  position: relative;
  padding: 0.5rem;
  color: var(--primary);
  transition: color 0.2s;
}

.site-header .cart-btn:hover {
  color: var(--accent);
}

.site-header .signup-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.85rem;
  border-radius: 0;
  background: #E83161;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  width: 160px;
}

.site-header .signup-btn:hover {
  background: #173158;
}

@media (min-width: 576px) {
  .site-header .signup-btn {
    display: inline-flex;
  }
}

@media (max-width: 991.98px) {
  .site-header .header-right {
    gap: 0.75rem;
  }
}

.site-header .menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--primary);
  background: #EDEFF2;
  /* border-radius: 0.5rem; */
  transition: background-color 0.2s;
  cursor: pointer;
}

.site-header .menu-toggle .menu-toggle-arrow {
  display: none;
}

.site-header .menu-toggle:hover {
  background: #173158;
}

.site-header .menu-toggle:hover .menu-toggle-hamburger {
  display: none;
}

.site-header .menu-toggle:hover .menu-toggle-arrow {
  display: block;
}

.site-header .mobile-search-trigger {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f0f2f5; */
  border-radius: 0;
  border: 2px solid #BAC2CD;
}

.site-header .mobile-cart-btn {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kp-pink);
  border-radius: 0;
}

@media (max-width: 991.98px) {
  .site-header .logo-link img {
    width: 186px;
    height: 48px;
    object-fit: contain;
  }
}

@media (min-width: 992px) {
  .site-header .menu-toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  /* box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1); */
  overflow-y: auto;
  display: none;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: 24px 20px;
}

.mobile-menu .kp-container {
  width: 323px !important;
  max-width: none !important;
}

.mobile-sub-nav {
  width: 323px !important;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  background: #EDEFF2;
  margin-bottom: 8px;
  text-decoration: none;
  color: #183158;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.2s;
  width: 100%;
  border: none;
  text-align: left;
}

.mobile-nav-item:hover {
  background: #e8eaed;
}

.mobile-nav-item svg {
  transition: transform 0.2s ease;
}

/* .mobile-nav-group.is-open .mobile-nav-item svg {
  transform: rotate(90deg);
} */

.mobile-nav-panel {
  display: none;
  padding: 8px 30px 16px;
  background: #f8f9fa;
  margin-bottom: 8px;
}

.mobile-nav-group.is-open .mobile-nav-panel {
  display: block;
  background-color: #173158;
}

.mobile-nav-group.is-open .mobile-nav-item {
  background-color: #173158;
  color: #ffffff;
  margin-bottom: 0;
}

.mobile-nav-subgroup {
  margin-bottom: 12px;
}

.mobile-nav-subtrigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid #eee;
}

.mobile-nav-group.is-open .mobile-nav-subtrigger {
  color: #ffffff;
  /* border-bottom-color: rgba(255, 255, 255, 0.1); */
  border: none;
}

.mobile-nav-group.is-open .mobile-nav-panel>.mobile-nav-sublink {
  color: #ffffff !important;
}

.mobile-nav-subtrigger i {
  transition: transform 0.2s ease;
  display: inline-block;
}

.mobile-nav-group.is-open .mobile-nav-subtrigger i {
  color: #ffffff;
}

.mobile-nav-subgroup.is-open .mobile-nav-subtrigger i {
  transform: rotate(90deg);
  color: #E83161;
}

.mobile-nav-subpanel {
  display: none;
  padding: 8px 0 8px 12px;
}

.mobile-nav-subgroup.is-open .mobile-nav-subpanel {
  display: block;
}

.mobile-nav-sublink {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted-foreground);
  text-decoration: none;
}

.mobile-nav-group.is-open .mobile-nav-sublink {
  color: #cbd5e1;
}

.mobile-nav-group.is-open .mobile-nav-sublink:hover {
  color: #ffffff;
}

/* .mobile-sub-nav {
  margin-top: 24px;
  margin-bottom: 32px;
} */

.mobile-sub-link {
  display: block;
  padding: 8px 30px;
  font-size: 16px;
  color: #5D6F8A;
  text-decoration: none;
  margin-bottom: 4px;
}

.mobile-sub-link.active {
  color: var(--accent);
  font-weight: 600;
}

.mobile-lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  font-size: 16px;
  color: #5D6F8A;
  /* margin-top: auto; */
  /* border-top: 1px solid #eee; */
  padding-top: 24px;
}

.mobile-social-row {
  display: flex;
  gap: 12px;
  padding: 20px 30px;
  background: #EDEFF2;
  margin: 14px auto 0px !important;
}

.mobile-social-box {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0;
  transition: all 0.3s ease;
}

.mobile-social-box svg path {
  transition: fill 0.3s ease;
}

.mobile-social-box:hover {
  background: #E83161;
}

.mobile-social-box:hover svg path {
  fill: #fff !important;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  display: none;
}

.mobile-menu-backdrop.open {
  display: block;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }

  .mobile-menu-backdrop {
    display: none !important;
  }
}

/* Tablet Screen Overrides for Mobile Menu Drawer */
@media (min-width: 768px) and (max-width: 991.98px) {
  .mobile-menu {
    width: 380px !important;
    /* box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important; */
    border-left: 1px solid #E8ECF0 !important;
  }
}



/* -------------------------------------------
   NAVBAR (main nav)
   ------------------------------------------- */
.main-nav {
  background: var(--background);
  border-bottom: 0;
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
}

.main-nav ul {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* padding: 0.5rem 0 0; */
}

.main-nav>.kp-container>ul>li {
  flex: 1 1 0;
  min-width: 266px;
}

.main-nav ul::-webkit-scrollbar {
  display: none;
}

.main-nav>.kp-container>ul>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  font-size: 18px;
  font-weight: 500;
  color: #183158;
  background: #EDEFF2;
  /* border: 1px solid #e4e8ee; */
  border-radius: 0;
  line-height: 1.2;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  height: 48px;
}

.main-nav>.kp-container>ul>li>a:hover,
.main-nav>.kp-container>ul>li>a:focus {
  border-color: #d9dee6;
  background: #ebeff3;
  /* color: var(--accent); */
}

.main-nav>.kp-container>ul>li>a.active {
  border-color: #173158;
  background: #173158;
  color: #FFFFFF;
}

.main-nav>.kp-container>ul>li.nav-mega-item.is-open>a,
.main-nav>.kp-container>ul>li.nav-mega-item:focus-within>a {
  border-color: #1b3560;
  background: #1b3560;
  color: white;
}

/* 
.main-nav>.kp-container>ul>li>a svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
} */

.main-nav>.kp-container>ul>li.nav-mega-item.is-open>a svg,
.main-nav>.kp-container>ul>li.nav-mega-item:focus-within>a svg {
  color: white;
}

.nav-mega-item {
  position: relative;
}

.nav-mega-link {
  position: relative;
  z-index: 2;
}

.nav-mega-menu {
  position: fixed;
  left: 50%;
  top: var(--nav-mega-top, 9.25rem) !important;
  /* width: min(1337px, calc(100vw - 2rem)); */
  width: clamp(320px, 90vw, 1640px);
  /* max-height: calc(100vh - var(--nav-mega-top, 9.25rem) - 1rem) !important; */
  max-height: clamp(400px, 80vh, 865px);
  overflow-x: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #183158;
  color: #f6f8fb;
  padding: 2.45rem 2.85rem 2.10rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 25;
}

.nav-mega-layout {
  display: grid;
  grid-template-columns: 440px 1200px;
  gap: 0;
  align-items: start;
}

.nav-mega-item.is-open .nav-mega-menu,
.nav-mega-item:focus-within .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-mega-menu::-webkit-scrollbar {
  width: 8px;
}

.nav-mega-menu::-webkit-scrollbar-thumb {
  background: rgba(246, 248, 251, 0.28);
  border-radius: 999px;
}

.nav-mega-menu::-webkit-scrollbar-track {
  background: transparent;
}

.nav-mega-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 0.75rem;
}

.nav-mega-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.nav-mega-image {
  width: 398px;
  height: 398px;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
}

.nav-mega-hero-content {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.nav-mega-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-mega-hero-content h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.nav-mega-hero-content p {
  max-width: 34rem;
  color: #BAC2CD;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 50px;
  font-weight: 400;
}

.nav-mega-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.8rem 1.1rem;
  background: #E73161;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-mega-cta svg path {
  transition: fill 0.2s ease;
}

.nav-mega-cta:hover {
  background: #FFFFFF;
  color: #E83161;
}

.nav-mega-cta:hover svg path {
  fill: #E83161;
}

.nav-mega-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-left: 30px;
  align-items: start;
}

.nav-mega-column-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mega-column {
  width: 100%;
}

.nav-mega-column h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 0.45rem;
}

.nav-mega-subheading {
  margin-top: 25px !important;
}

.nav-mega-column a {
  display: block;
  padding: 0.12rem 0 !important;
  color: #BAC2CD;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav-mega-column a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.nav-mega-mobile {
  display: none;
}

@media (max-width: 1199.98px) {
  .nav-mega-menu {
    width: min(1080px, 94vw);
  }

  .nav-mega-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.25rem;
  }

  .nav-mega-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .main-nav {
    display: block;
  }

  .nav-mega-menu {
    display: none !important;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .nav-mega-hero {
    min-height: 100%;
  }
}

@media (max-width: 767.98px) {
  .main-nav ul {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav ul li {
    flex: 0 0 auto;
  }

  .main-nav ul li a {
    padding: 0.7rem 0.85rem;
  }

  .nav-mega-menu {
    display: none !important;
  }
}

/* -------------------------------------------
   HERO SECTION
   ------------------------------------------- */
.hero-section {
  position: relative;
  /* height: 400px; */
  overflow: hidden;
}

/* @media (min-width: 768px) {
  .hero-section {
    height: 500px;
  }
} */

.hero-section img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 45, 80, 0.9), rgba(26, 45, 80, 0.7), transparent);
}

.hero-section .hero-content {
  position: absolute;
  inset: 0;
  /* display: flex;
  align-items: center; */
}

.hero-section .hero-text {
  max-width: 32rem;
}

.hero-section h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

.hero-section .hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-section .hero-desc {
    font-size: 1.125rem;
  }
}

/* Home hero variant: split layout like the design reference */
.hero-section.hero-split {
  position: relative;
  height: auto;
  background: #ffffff;
  padding: 0.25rem 0;
  overflow: hidden;
}

.hero-split-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  justify-content: center;
}

.hero-left-col {
  width: calc((1030 / 1640) * 100%);
  height: 600px;
}

.hero-right-col {
  width: calc((600 / 1640) * 100%);
  height: 600px;
}

.hero-split-left {
  position: relative;
  padding: 2rem 1.5rem;
  color: #fff;
  background: linear-gradient(36.58deg, #173158 16.44%, #E83161 77.19%);
  height: 100%;
}

.hero-split-left .hero-text {
  max-width: 860px;
  /* padding-top: 0.5rem; */
}

.hero-split-left h1 {
  font-size: 60px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-split-left .hero-desc {
  font-size: 34px;
  line-height: 1.22;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.hero-split-left .hero-sub-desc {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 35px;
}

.hero-arrow-chip {
  position: relative;
  top: auto;
  left: auto;
  width: 62px;
  height: 62px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 2.2rem;
  color: #ff2a78;
}

.hero-arrow-chip-image {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  align-items: center;
}

.hero-split-left .kp-btn-pink {
  border-radius: 0;
  font-weight: 600;
  background: #E83161;
  width: 210px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-split-left .kp-btn-pink:hover {
  background: #FFFFFF;
  color: #173158;

}

.hero-split-left .kp-btn-pink:hover svg path {
  fill: #E73161;
}

.hero-split-left .kp-btn-pink.hero-banner-btn:hover {
  background: #FFFFFF !important;
  color: #173158 !important;
}

.hero-split-left .kp-btn-pink.hero-banner-btn:hover svg path {
  fill: #E83161;
}

.hero-split-left .kp-btn-pink i,
.hero-split-left .kp-btn-pink svg {
  position: absolute;
  left: 20px;
}

.hero-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.hero-inline-link strong {
  color: #E83161;
  font-weight: 600;
}

.hero-split-right {
  position: relative;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1024px) {

  .hero-left-col,
  .hero-right-col {
    height: 450px;
  }
}

@media (max-width: 711.98px) {
  .main-nav {
    display: none !important;
  }

  .hero-section.hero-split {
    padding: 2rem 0;
  }

  .hero-split-wrap {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .hero-left-col {
    width: 322px !important;
    height: 248px !important;
    flex: none;
  }

  .hero-right-col {
    width: 322px !important;
    height: 322px !important;
    flex: none;
  }

  .hero-split-left {
    padding: 2rem 1.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* border-radius: 12px; */
  }

  .hero-split-left h1 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    /* line-height: 1.2 !important; */
    max-width: 245px;
  }

  .hero-split-left .hero-desc {
    font-size: 14px !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
  }

  .hero-split-left .hero-sub-desc {
    display: block !important;
    font-size: 10px !important;
    margin-bottom: 0 !important;
    opacity: 0.9;
  }

  .hero-split-left .kp-btn-pink {
    display: none;
  }

  .hero-mobile-cta {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 260px;
  }

  .hero-mobile-cta .kp-btn-pink {
    display: flex !important;
    width: 260px !important;
    height: 48px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 0px !important;
    /* padding-left: 2.5rem !important; */
  }

  .hero-mobile-cta .kp-btn-pink:hover {
    background: #FFFFFF !important;
    color: #173158 !important;
  }

  .hero-mobile-cta .kp-btn-pink:hover svg path {
    fill: #E83161 !important;
  }

  /* .hero-mobile-cta .kp-btn-pink svg {
    width: 40px !important;
    height: 40px !important;
    left: 4px !important;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  } */

  .hero-arrow-mobile-corner {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
  }

  .hero-split-right {
    /* border-radius: 12px; */
    overflow: hidden;
    position: relative;
  }
}

/* Benefits Bar Scroller */
@media (max-width: 711.98px) {
  .home-benefits-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 12px;
    gap: 16px;
    scrollbar-width: none;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    /* padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem; */
  }

  .home-benefits-grid::-webkit-scrollbar {
    display: none;
  }

  .home-benefit-card {
    min-width: 201px;
    flex: 0 0 auto;
  }

  .shop-cat-tab:hover .shop-cat-tab-icon {
    filter: none !important;
  }

  .mobile-padding-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.hero-split-right::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: #173158; */
  opacity: 0.3;
  z-index: 1;
}

.hero-side-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Continuous background motion � image Ken-Burns + arrow float (don't conflict with slide entrance) */
.hero-img-animate {
  animation: none;
}

.hero-img-animate .hero-side-image {
  will-change: transform;
}

/* ------------------------------------------------------------
   UNIFIED HERO SLIDE TRANSITION
   Both panels (left content + right image) slide together as ONE
   rigid unit. Uses only transform + opacity � zero filters, zero
   paint-triggering properties � so it's 60fps on any hardware.
   ------------------------------------------------------------ */
.hero-slide {
  position: relative;
  perspective: 1600px;
  perspective-origin: 50% 50%;
}

.hero-slide.is-active.is-animating .hero-split-wrap {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@keyframes heroUnifiedInNext {
  0% {
    opacity: 0;
    transform: translate3d(10%, 0, 0) rotateY(-10deg) scale(0.95);
  }

  50% {
    opacity: 1;
  }

  78% {
    transform: translate3d(-1%, 0, 0) rotateY(1deg) scale(1.006);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
  }
}

@keyframes heroUnifiedInPrev {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0) rotateY(10deg) scale(0.95);
  }

  50% {
    opacity: 1;
  }

  78% {
    transform: translate3d(1%, 0, 0) rotateY(-1deg) scale(1.006);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
  }
}

/* Cinematic light sheen � transform-animated (GPU), not background-position */
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.28) 50%,
      transparent 100%);
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

@keyframes heroSheenSweep {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(350%, 0, 0);
  }
}

@media (max-width: 767.98px) {

  /* Mobile: drop the 3D rotate, keep motion simple and fast */
  @keyframes heroUnifiedInNext {
    0% {
      opacity: 0;
      transform: translate3d(30px, 0, 0) scale(0.97);
    }

    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  @keyframes heroUnifiedInPrev {
    0% {
      opacity: 0;
      transform: translate3d(-30px, 0, 0) scale(0.97);
    }

    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  .hero-slide.is-active.is-animating .hero-split-wrap {
    animation-duration: 0.6s;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-slide.is-active.is-animating .hero-split-wrap,
  .hero-img-animate .hero-side-image,
  .hero-arrow-animate,
  .hero-slide.is-active.is-animating::after {
    animation: none !important;
  }
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: default;
}

.hero-nav.is-enabled {
  cursor: pointer;
}

.hero-nav-prev {
  left: 1rem;
}

.hero-nav-next {
  right: 1rem;
}

.hero-nav {
  display: none !important;
}

.hero-slide[hidden] {
  display: none !important;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.5rem;
  z-index: 6;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
}

.hero-slider-dot.is-active {
  background: #ff2a78;
}

@media (min-width: 992px) {
  .hero-section.hero-split {
    padding: 0;
  }

  .hero-split-wrap {
    height: 600px;
  }

  .hero-split-left {
    padding: 3.35rem 52px;
  }

  .hero-split-right {
    min-height: 470px;
  }

  .hero-arrow-chip-image {
    top: 39px;
    left: 35px;
  }
}

@media (max-width: 991.98px) {
  .hero-nav {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(255, 42, 120, 0.22);
  }

  .hero-section.hero-split {
    padding: 0px !important;
    margin-top: 0px !important;
  }

  /* .hero-split-wrap {
    height: 500px;
  } */

  .hero-arrow-chip {
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
    border-radius: 10px;
  }

  .hero-split-left {
    padding: 1.5rem 1rem;
  }

  .hero-split-left h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-split-left .hero-desc {
    font-size: clamp(1rem, 2.6vw, 1.25rem);
  }

  .hero-split-left .hero-sub-desc {
    margin-bottom: 1.25rem;
  }

  .hero-cta-row {
    gap: 0.75rem 1rem;
  }

  .hero-arrow-chip-image {
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
    border-radius: 10px;
    top: 1rem;
    left: 1rem;
  }

  .hero-inline-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  /* .hero-split-wrap {
    height: 450px;
  } */

  .hero-split-left {
    padding: 1.25rem 1rem;
  }

  .hero-split-left h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-split-left .hero-desc {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .hero-split-left .kp-btn-pink {
    padding: 0.65rem 1.1rem;
    font-size: 0.8125rem;
  }

  .hero-slider-dots {
    bottom: 0.5rem;
  }

  .hero-slider-dot {
    width: 8px;
    height: 8px;
  }
}

/* -------------------------------------------
   BENEFITS BAR
   ------------------------------------------- */
.benefits-bar {
  background: var(--muted);
  padding: 1.25rem 0;
  /* border-bottom: 1px solid var(--border); */
}

.benefits-bar ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-bar ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefits-bar li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefits-bar li svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.benefits-bar li p {
  font-size: 0.875rem;
  color: var(--foreground);
}

.benefits-bar li p strong {
  font-weight: 600;
}

/* -------------------------------------------
   BRAND LOGOS
   ------------------------------------------- */
.brand-logos {
  padding: 40px 0 30px;
  /* border-bottom: 1px solid var(--border); */
  overflow: hidden;
}

.brand-logos .brands-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}

.brand-logos .brands-row:active {
  cursor: grabbing;
}

.brand-logos .brands-row span {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(100, 116, 139, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.brand-logos .brands-row span img {
  height: 2.5rem;
  width: auto;
  max-width: 120px;
  object-fit: contain;

  transition: all 0.3s;
}

.brand-logos .brands-row span img:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .brand-logos .brands-row span {
    font-size: 1.25rem;
  }

  .brand-logos .brands-row span img {
    height: 3rem;
    max-width: 140px;
  }
}

@media (max-width: 767.98px) {
  .brand-logos .kp-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .brand-logos .brands-row {
    gap: 0 !important;
  }

  .brand-logos .brands-row span {
    width: 120px !important;
    height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .brand-logos .brands-row span img {
    max-width: 120px !important;
    max-height: 48px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .topbar .promo-area {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .topbar .promo-text {
    margin: 0 !important;
    text-align: center !important;
    flex: 1 !important;
  }

  .topbar .promo-arrow-btn {
    color: #E83161 !important;
  }

  .topbar .promo-area .promo-arrow-btn:first-of-type {
    justify-content: flex-start !important;
  }

  .topbar .promo-area .promo-arrow-btn:last-of-type {
    justify-content: flex-end !important;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Visible state */
.anim-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delays */
.anim-delay-0 {
  transition-delay: 0s;
}

.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}

.anim-delay-5 {
  transition-delay: 0.5s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  .anim-fade-up,
  .anim-fade-left,
  .anim-fade-right,
  .anim-scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------
   SHOP BY CATEGORIES
   ------------------------------------------- */
.categories-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .categories-section {
    padding: 4rem 0;
  }
}

.categories-section h2 {
  margin-bottom: 2rem;
}

/* Shop category tabs */
.shop-categories-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shop-cat-tabs-scroll {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.shop-cat-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.shop-cat-tab {
  display: inline-flex;
  align-items: center;
  width: 192px;
  height: 48px;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
  flex: 0 0 auto;
  overflow: visible;
  gap: 2px;
}

.shop-cat-tab .tab-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F8F9;
  /* border: 1.5px solid #e5e7eb; */
}

.shop-cat-tab .tab-text-box {
  flex: 1;
  height: 48px;
  width: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #183158;
  background: #F7F8F9;
  /* border: 1.5px solid #e5e7eb; */
}

.shop-cat-tab:hover {
  border-color: #183158;
  color: #fff;
}

.shop-cat-tab:hover .tab-icon-box,
.shop-cat-tab:hover .tab-text-box {
  background: #183158;
  border-color: #183158;
  color: #fff;
}

.shop-cat-tab:hover .shop-cat-tab-icon {
  filter: none;
}

.shop-cat-tab.active .tab-icon-box {
  background: #E83161;
  border-color: #E83161;
  color: #fff;
}

.shop-cat-tab.active .tab-text-box {
  background: #E83161;
  color: #fff;
  border-color: #E83161;
}

.shop-cat-tab-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  /* border-radius: 50%; */
}

.shop-cat-tab.active .shop-cat-tab-icon {
  filter: brightness(0) invert(1);
}

.shop-cat-tab i.fa,
.shop-cat-tab i.fas,
.shop-cat-tab i.far,
.shop-cat-tab i.fab {
  font-size: 1rem;
  color: var(--accent);
}

.shop-cat-tab.active i.fa,
.shop-cat-tab.active i.fas,
.shop-cat-tab.active i.far,
.shop-cat-tab.active i.fab {
  color: #fff;
}

/* Responsive tabs */
@media (max-width: 575.98px) {
  .shop-cat-tab {
    padding: 0;
    font-size: 0.6875rem;
    gap: 2px;
    width: auto;
  }

  .shop-cat-tab .tab-icon-box {
    width: 32px;
    height: 32px;
  }

  .shop-cat-tab .tab-text-box {
    height: 32px;
    padding: 0 0.4rem;
  }

  .shop-cat-tab-icon {
    width: 1rem;
    height: 1rem;
  }

  .shop-cat-tab i.fa,
  .shop-cat-tab i.fas,
  .shop-cat-tab i.far,
  .shop-cat-tab i.fab {
    font-size: 0.8125rem;
  }

  .cat-shop-all-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.6875rem;
  }

  .shop-categories-toolbar {
    gap: 0.5rem;
  }

  .shop-cat-tabs-scroll {
    gap: 0.4rem;
  }
}

/* Category product panels */
.home-shop-cat {
  background-color: #fff;
}

@media (min-width: 1200px) {
  .home-shop-cat {
    height: 1080px;
    display: flex;
    align-items: center;
  }
}

.shop-cat-panel {
  display: none;
}

.shop-cat-panel.active {
  display: block;
}

/* Shop slider */
.shop-cat-slider {
  position: relative;
}

.shop-slider-viewport {
  overflow: hidden;
}

.shop-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f3f4f6;
  color: #9ca3af;
  transition: all 0.2s;
}

.shop-slider-arrow:hover {
  background: #E83161;
  color: #fff;
}

.shop-slider-prev {
  left: -24px;
}

.shop-slider-next {
  right: -24px;
  background: #E83161;
  color: #fff;
}

.shop-slider-prev {
  left: 0.25rem;
}

.shop-slider-next {
  right: 0.25rem;
}

@media (max-width: 767.98px) {
  .shop-slider-prev {
    left: -0.25rem;
  }

  .shop-slider-next {
    right: -0.25rem;
  }

  .shop-slider-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: all 0.2s;
}

.category-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-card .cat-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s;
}

.category-card:hover .cat-icon {
  background: rgba(225, 29, 109, 0.1);
}

.category-card .cat-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  text-align: center;
}

@media (min-width: 768px) {
  .category-card .cat-name {
    font-size: 0.875rem;
  }
}

/* -------------------------------------------
   ABOUT KEYPAR
   ------------------------------------------- */

/* Pink outline button */
.about-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--foreground);
  border-radius: 0.375rem;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.2s;
  width: 187px;
  height: 48px;
}

.about-btn-outline:hover {
  background: var(--foreground);
  color: #fff;
}

.about-btn-outline.about-btn-pink {
  border-color: #E83161;
  color: #E83161;
}

.about-btn-outline.about-btn-pink:hover {
  background: var(--accent);
  color: #fff;
}

/* Blog card title clamp */
.blog-card-title {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--foreground);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stat numbers */
.about-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.btn-outline-dark {
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .about-stat-number {
    font-size: 2.5rem;
  }
}

/* 3-image stack (desktop only — positions that Bootstrap can't do) */
.about-img-stack-desktop {
  position: relative;
  min-height: 720px;
  width: 860px;
  max-width: 860px;
}

.about-img-1 {
  top: 55px;
  left: 45px;
  width: 600px;
  height: 600px;
  aspect-ratio: 1 / 1;
  z-index: 1;
}

.about-img-2 {
  top: -110px;
  right: 73px;
  width: 300px;
  height: 300px;
  aspect-ratio: 1 / 1;
  z-index: 2;
}

.about-img-3 {
  bottom: 155px;
  right: 168px;
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  z-index: 3;
}

/* -------------------------------------------
   FEATURED PRODUCTS
   ------------------------------------------- */
/* Featured card � aspect ratio square + gradient overlay */
.featured-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #e5e7eb;
}

@media (max-width: 767.98px) {
  #featuredCarouselMobile .featured-card-img {
    aspect-ratio: 100 / 110;
  }
}

.featured-card-overlay {
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%); */
  pointer-events: none;
}

.featured-card-info h3 {
  font-size: clamp(0.8125rem, 1.5vw, 1.125rem);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-card-arrow {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}

/* .featured-card-arrow:hover {
  background: var(--primary);
  color: #fff;
} */

/* Featured carousel controls */
#featuredCarouselDesktop .carousel-control-prev,
#featuredCarouselDesktop .carousel-control-next,
#featuredCarouselTablet .carousel-control-prev,
#featuredCarouselTablet .carousel-control-next {
  width: 2.5rem;
  height: 2.5rem;
  top: 45%;
  bottom: auto;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

#featuredCarouselDesktop .carousel-control-prev,
#featuredCarouselTablet .carousel-control-prev {
  left: 0.25rem;
}

#featuredCarouselDesktop .carousel-control-next,
#featuredCarouselTablet .carousel-control-next {
  right: 0.25rem;
}

@media (max-width: 991.98px) {

  #featuredCarouselDesktop .carousel-control-prev,
  #featuredCarouselDesktop .carousel-control-next,
  #featuredCarouselTablet .carousel-control-prev,
  #featuredCarouselTablet .carousel-control-next {
    left: 0.25rem;
  }

  #featuredCarouselDesktop .carousel-control-next,
  #featuredCarouselTablet .carousel-control-next {
    right: 0.25rem;
  }
}

#featuredCarouselDesktop .carousel-control-prev-icon,
#featuredCarouselDesktop .carousel-control-next-icon,
#featuredCarouselTablet .carousel-control-prev-icon,
#featuredCarouselTablet .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
  width: 1rem;
  height: 1rem;
}

/* Carousel dot indicators (shared by both carousels) */
#featuredCarouselDesktop .carousel-indicators [data-bs-target],
#featuredCarouselTablet .carousel-indicators [data-bs-target],
#featuredCarouselMobile .carousel-indicators [data-bs-target] {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none !important;
  border-top: 0px;
  border-bottom: 0px;
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}

#featuredCarouselDesktop .carousel-indicators .active,
#featuredCarouselTablet .carousel-indicators .active,
#featuredCarouselMobile .carousel-indicators .active {
  background: var(--accent);
  transform: scale(1.3);
}

/* -------------------------------------------
   PRODUCT CARD (categories pages variant)
   ------------------------------------------- */
/* Product card v2 - new design */
.product-card-v2 {
  position: relative;
  /* background: var(--background); */
  transition: box-shadow 0.2s;
}

.product-card-v2:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.product-card-v2 .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: #E83161;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.product-card-v2 .wishlist-btn {
  display: none;
}

.product-card-v2 .card-img {
  position: relative;
  width: 400px;
  height: 400px;
  /* max-width: 100%; */
  aspect-ratio: 1;
  /* background: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  border: 2px solid #EDEFF2;
  border-radius: 0;
}

.product-card-v2 .card-img .tag {
  top: 0.75rem;
  right: 0.75rem;
}

.product-card-v2 .card-img img {
  max-width: 360px;
  height: 360px;
  object-fit: cover;
  transition: transform 0.3s;
}

/* .product-card-v2:hover .card-img img {
  transform: scale(1.05);
} */

.product-card-v2 .card-info {
  padding: 1rem 0.25rem;
}

.product-card-v2 .card-info .card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.product-card-v2 .card-info .card-meta .cat-label {
  color: #5D6F8A;
  font-weight: 400;
}

.product-card-v2 .card-info .card-meta .meta-sep {
  color: #D1D1D1;
}

.product-card-v2 .card-info .card-meta .brand-label {
  color: #5D6F8A;
  font-weight: 400;
}

.product-card-v2 .card-info .card-meta .brand-name {
  color: #183158;
  font-weight: 400;
}

.product-card-v2 .card-info .brand {
  display: none;
}

.product-card-v2 .card-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #183158;
  line-height: 1.3;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 70px;
  margin: 0 0 0.75rem;
}

.product-card-v2 .card-info .card-variants {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 30px;
}

.product-card-v2 .card-info .card-variants span {
  color: #183158;
  font-weight: 400;
}

.product-card-v2 .card-info .card-variants .var-sep {
  margin: 0 0.375rem;
  color: #D1D1D1;
}

.product-card-v2 .card-info .prices {
  display: none;
}

.product-card-v2 .card-info .buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: #E83161;
  border: 2px solid #E83161;
  border-radius: 0;
  padding: 10px;
  background: transparent;
  transition: all 0.2s;
  text-decoration: none;
  margin-top: 20px;
  padding: 10px;
  width: 168px;
  height: 42px;
}

.product-card-v2 .card-info .buy-btn:hover {
  background: #E73161;
  color: #ffffff;
  border-color: #E73161;
}

/* Mobile-only: constrain home "Shop by Categories" product images to 160x160px
   Applies only on small viewports and only when the partial adds the helper classes */
@media (max-width: 767.98px) {
  .home-shop-cat-img {
    width: 160px !important;
    height: 160px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .home-shop-cat-img-wrap {
    width: 160px !important;
    height: 160px !important;
    padding: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
}

/* (Category section header now uses Bootstrap row/col classes) */

/* -------------------------------------------
   DISCOVER BRANDS
   ------------------------------------------- */
/* -------------------------------------------
   HOT OFFERS
   ------------------------------------------- */
.hot-offer-dot {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-radius: 0 !important;
  background: #d1d5db;
  border: none;
  margin: 0 0.25rem !important;
  padding: 0 !important;
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}

.hot-offer-dot.active {
  background: #ff2a78;
  transform: scale(1.3);
  border: none !important;
}

/* -------------------------------------------
   REASONS TO SHOP
   ------------------------------------------- */
.home-anim-reasons {
  background-color: #152C50 !important;
}

@media (min-width: 1200px) {
  .home-anim-reasons {
    height: 1080px;
    display: flex;
    align-items: center;
    background-image: url('../images/reasons-bg.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 473px 1080px;
  }

  .reasons-layout-wrapper.row {
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
  }

  .reasons-left-col.col-lg-3 {
    width: 526px;
    flex: 0 0 526px;
    max-width: 526px;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .reasons-main-box {
    width: 526px;
    height: 526px;
    background: #E73161 !important;
    display: flex;
    align-items: center;
    padding: 80px 70px !important;
  }

  .reasons-arrow-box {
    width: 160px;
    height: 160px;
    margin-top: 25px;
  }

  .reasons-right-col.col-lg-9 {
    width: 1083px;
    flex: 0 0 1083px;
    max-width: 1083px;
    padding: 0 !important;
    margin-left: 20px;
  }

  .reasons-grid.row {
    margin: 0;
    display: grid !important;
    grid-template-columns: repeat(3, 340px) !important;
    grid-template-rows: repeat(2, 340px) !important;
    gap: 31px !important;
  }

  .reasons-grid-item {
    width: 340px !important;
    height: 340px !important;
    max-width: 340px !important;
    flex: 0 0 340px !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* -------------------------------------------
   FEATURED PRODUCTS
   ------------------------------------------- */
@media (min-width: 1200px) {
  .home-anim-featured {
    height: 750px;
    display: flex;
    align-items: center;
  }
}

.featured-card-img {
  width: 388px;
  max-width: 100%;
  aspect-ratio: 1;
  height: auto !important;
  margin: 0;
  position: relative;
}

@media (min-width: 992px) {
  .featured-card-img {
    width: 388px;
    aspect-ratio: 1;
  }
}

.featured-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%); */
  pointer-events: none;
  z-index: 1;
}

.featured-card-info {
  z-index: 2;
}

.featured-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  background: #E83161;
  text-decoration: none;
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
  white-space: nowrap;
}

.featured-card-arrow-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.featured-card-arrow-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-right: 20px;
}

.featured-card-arrow:hover {
  max-width: 420px;
  /* background-color: #d42252; */
}

.featured-card-arrow:hover .featured-card-arrow-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}


/* -------------------------------------------
   REVIEWS
   ------------------------------------------- */
.reviews-section {
  padding: 3rem 0;
  height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .reviews-section {
    padding: 4rem 0;
  }
}

.reviews-section h2 {
  margin-bottom: 0.5rem;
}

.reviews-section .rating-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.reviews-section .stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent);
  color: var(--accent);
}

.reviews-section .rating-num {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.reviews-section .rating-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 576px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: var(--background);
}

.review-card .review-stars {
  display: flex;
  margin-bottom: 0.75rem;
}

.review-card .review-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent);
  color: var(--accent);
}

.review-card .review-text {
  font-size: 16px;
  color: #183158;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card .review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

/* -------------------------------------------
   STAY UPDATED
   ------------------------------------------- */
.su-pink-box {
  background: var(--accent);
  overflow: hidden;
  z-index: 1;
}

.su-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 30rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .su-heading {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .su-heading {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .su-heading {
    font-size: 2.25rem;
  }
}

.su-desc {
  opacity: 0.95;
  font-size: 0.875rem;
  max-width: 30rem;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .su-desc {
    font-size: 0.9375rem;
  }
}

@media (min-width: 992px) {
  .su-desc {
    font-size: 1rem;
  }
}

.su-subdesc {
  opacity: 0.55;
  font-size: 0.6875rem;
  max-width: 30rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .su-subdesc {
    font-size: 0.75rem;
  }
}

.su-subscribe-btn {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
  z-index: 2;
}

.su-subscribe-btn:hover {
  opacity: 0.9;
  color: #fff;
}

.su-top-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .su-top-arrow {
    top: 1.5rem;
    right: 1.5rem;
  }

  .su-top-arrow svg {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 992px) {
  .su-top-arrow svg {
    width: 36px;
    height: 36px;
  }
}

.su-watermark-arrow {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
}

@media (min-width: 992px) {
  .su-watermark-arrow {
    right: -1rem;
    bottom: -2rem;
  }

  .su-watermark-arrow svg {
    width: 320px;
    height: 320px;
  }
}

/* -------------------------------------------
   SUPPORT & FAQ
   ------------------------------------------- */
.support-faq {
  padding: 3rem 0;
  background: var(--muted);
}

@media (min-width: 768px) {
  .support-faq {
    padding: 4rem 0;
  }
}

.support-faq .sf-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .support-faq .sf-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.support-faq .sf-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.support-faq .support-img {
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  width: 100%;
  max-width: 200px;
  object-fit: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  text-align: left;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.faq-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
}

/* -------------------------------------------
   FOOTER
   ------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.site-footer .footer-split {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 840px;
  height: auto;
}

@media (min-width: 1200px) {
  .site-footer .footer-split {
    grid-template-columns: minmax(0, 1080fr) minmax(0, 840fr);
    height: 840px;
    min-height: 840px;
    max-height: 840px;
  }
}

@media (min-width: 1920px) {
  .site-footer .footer-split {
    grid-template-columns: 1080px 840px;
    width: 1920px;
    height: 840px;
    min-height: 840px;
    max-height: 840px;
  }
}

.site-footer .footer-left-panel,
.site-footer .footer-right-panel {
  position: relative;
  box-sizing: border-box;
}

@media (min-width: 1200px) {

  .site-footer .footer-left-panel,
  .site-footer .footer-right-panel {
    height: 840px;
    min-height: 840px;
    max-height: 840px;
    overflow: hidden;
  }

  .site-footer .footer-left-panel {
    width: 100%;
    max-width: 1080px;
  }

  .site-footer .footer-right-panel {
    width: 100%;
    max-width: 840px;
  }
}

@media (min-width: 1920px) {
  .site-footer .footer-left-panel {
    width: 1080px;
    max-width: 1080px;
  }

  .site-footer .footer-right-panel {
    width: 840px;
    max-width: 840px;
  }
}

.site-footer .footer-left-panel {
  background-color: #183158;
  background-image: url("../images/footer-bg-left.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
}

.site-footer .footer-right-panel {
  background: #E73161;
}

.site-footer .footer-right-panel::after {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 163px;
  background-image: url("../images/footer-bg-right.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top right;
  opacity: 1;
  pointer-events: none;
}

.site-footer .footer-panel-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
}

.site-footer .footer-right-inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .site-footer .footer-panel-inner {
    padding: 6rem 3rem 4rem;
  }
}

@media (min-width: 1561px) {
  .site-footer .footer-left-panel .footer-panel-inner {
    padding: 120px 120px 0;
    min-height: 840px;
    height: 100%;
    box-sizing: border-box;
  }

  .site-footer .footer-right-panel .footer-panel-inner {
    padding: 120px 70px 0;
    min-height: 840px;
    height: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 992px) and (max-width: 1299.98px) {
  .nav-mega-menu {
    width: min(1216px, calc(100vw - 2rem));
  }
}

@media (min-width: 992px) and (max-width: 1560.98px) {
  .site-footer .footer-left-panel .footer-panel-inner {
    padding: 120px 120px 0 !important;
    min-height: 840px !important;
    height: 100%;
    box-sizing: border-box;
  }

  .site-footer .footer-right-panel .footer-panel-inner {
    padding: 120px 70px 0 !important;
    min-height: 840px !important;
    height: 100%;
    box-sizing: border-box;
  }

  .site-footer .footer-split {
    grid-template-columns: minmax(0, 1080fr) minmax(0, 840fr) !important;
    height: 840px !important;
    min-height: 840px !important;
    max-height: 840px !important;
    max-width: 1920px !important;
  }

  .site-footer .footer-left-panel,
  .site-footer .footer-right-panel {
    height: 840px !important;
    min-height: 840px !important;
    max-height: 840px !important;
  }

  .site-footer .footer-left-panel h2 {
    font-size: 3rem;
  }

  .nav-mega-menu {
    padding: 2.05rem 2.45rem 2rem !important;
  }

  .nav-mega-image {
    margin-bottom: 5px !important;
    height: 285px !important;
  }

  .nav-mega-hero-content h2 {
    margin-bottom: 10px;
  }

  .site-footer .footer-action-btn {
    margin-right: 30px !important;
  }

  .site-footer .footer-columns {
    margin-bottom: 30px !important;
  }
}

.site-footer .footer-action-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.site-footer .footer-action-pair {
  display: inline-flex;
  align-items: stretch;
  margin-right: 35px;
  width: 210px;
  height: 48px;
}

.site-footer .footer-left-panel h2 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 677px;
}

.site-footer .footer-lead {
  max-width: 620px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.site-footer .footer-action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  margin-right: 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  width: 160px;
  height: 48px;
}

.site-footer .footer-action-icon {
  min-width: 48px;
  height: 48px;
  /* padding: 0 0.9rem; */
  display: inline-flex;
  margin-right: 3px;
  align-items: center;
  justify-content: center;
  background: #E83161;
}

.site-footer .footer-action-icon svg,
.site-footer .footer-action-icon i {
  /* width: 20px; */
  /* height: 20px; */
  font-size: 20px;
}

/* .site-footer .footer-action-btn span:last-child {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1.5rem;
} */

.site-footer .footer-action-btn-primary {
  background: #E83161;
}

.site-footer .footer-action-btn-secondary {
  background: #ea2d68;
}

.site-footer .footer-action-pair:hover .footer-action-icon,
.site-footer .footer-action-pair:hover .footer-action-btn {
  background: #FFFFFF;
  color: #173158;
}

.site-footer .footer-action-pair:hover .footer-action-icon i {
  color: #E83161;
}

.site-footer .footer-action-pair:hover .footer-action-icon svg path {
  fill: #E83161;
}

@media (max-width: 711.98px) {
  .site-footer .footer-action-row {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .site-footer .footer-action-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  .site-footer .footer-action-btn {
    width: 100%;
    margin-right: 0;
  }

  .site-footer .footer-action-pair {
    display: contents;
    margin-right: 0;
  }

  .site-footer .footer-action-btn:nth-child(2),
  .site-footer .footer-action-btn:nth-child(4) {
    margin-bottom: 0.75rem;
  }

  .site-footer .footer-action-row> :nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .site-footer .footer-action-row> :nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer .footer-action-row> :nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer .footer-action-row> :nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
}

.site-footer .footer-support-box {
  max-width: 24rem;
  margin-bottom: 60px;
}

.site-footer .footer-support-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.site-footer .footer-support-box p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 25px;
}

.site-footer .footer-support-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.site-footer .footer-support-phone i {
  color: #ff6b9a;
  width: 1.2em;
  text-align: center;
  flex: 0 0 1.2em;
}

.site-footer .footer-support-email {
  display: block;
  margin-left: 37px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.site-footer .footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  margin-top: 85px;
}

.site-footer .footer-brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-footer .footer-copyright {
  color: #ffffff;
  font-size: 12px;
}

.site-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.site-footer .footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #173158;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.site-footer .footer-socials a:hover {
  background: #E83161;
  color: #173158;
}

.site-footer .footer-socials a:hover svg path {
  fill: #173158 !important;
}

.site-footer .footer-socials i {
  font-size: 1.25rem;
}

.site-footer .footer-columns {
  display: grid;
  gap: 2rem;
  margin-bottom: 50px;
}

@media (max-width: 711.98px) {
  .site-footer .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
    gap: 1.5rem;
  }

  .site-footer .footer-columns h3 {
    font-size: 1rem;
  }

  .site-footer .footer-columns ul li a {
    font-size: 0.875rem;
  }

  .site-footer .footer-panel-inner {
    padding: 2.5rem 1.25rem;
  }

  .site-footer .footer-left-panel h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .site-footer .footer-lead {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .site-footer .footer-action-row {
    margin-bottom: 2rem;
  }

  .site-footer .footer-brand-row {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .site-footer .footer-legal-links {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .site-footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .site-footer .footer-left-panel h2 {
    font-size: 1.5rem;
  }

  .site-footer .footer-lead {
    font-size: 0.8125rem;
  }
}

@media (min-width: 712px) {
  .site-footer .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem;
  }
}

.site-footer .footer-columns h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer .footer-columns ul {
  display: grid;
  gap: 0.7rem;
}

.site-footer .footer-columns ul li {
  margin: 0;
}

.site-footer .footer-columns ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.site-footer .footer-columns ul li a:hover {
  text-decoration: underline;
}

.site-footer .footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: start;
  justify-content: start;
  margin-top: auto;
  margin-bottom: 77px;
  color: #ffffff;
  font-size: 12px;
  text-align: start;
  font-weight: 500;
}

.site-footer .footer-legal-links a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer .footer-legal-links a:hover {
  text-decoration: underline;
}

/* -------------------------------------------
   WHATSAPP BUTTON
   ------------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2999;
  /* z-index: 40; */
  /* width: 3.5rem;
  height: 3.5rem; */
  border-radius: 50%;
  /* background: hsl(142, 70%, 45%); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  transition: box-shadow 0.2s;
}

.whatsapp-btn svg {
  width: 80px;
  height: 80px;
  /* transition: transform 0.2s; */
}

@media (max-width: 767.98px) {
  .whatsapp-btn svg {
    width: 60px;
    height: 60px;
  }
}

.whatsapp-btn:hover svg g rect:first-child {
  fill: #E73161 !important;
}

/* -------------------------------------------
   MODALS
   ------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 7, 18, 0.8);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  padding: 1rem;
}

.modal-backdrop.open {
  display: flex;
}

.modal-box {
  background: var(--background);
  /* border-radius: 1rem; */
  overflow: hidden;
  width: 100%;
  max-height: 95vh;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* Welcome Modal Redesign */
.welcome-modal .welcome-modal-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-modal .modal-box {
  width: 1200px;
  max-width: 95vw;
  display: flex;
  border-radius: 0;
  min-height: 600px;
  background: #ffffff;
  border: none;
}

.welcome-modal .modal-left {
  width: 600px;
  height: 600px;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  background: linear-gradient(145deg, #c11f6e 0%, #713a93 45%, #20355f 100%);
  color: #ffffff;
  overflow: hidden;
  display: flex;
}

.welcome-modal .modal-left-logo-box {
  width: 60px;
  height: 60px;
  /* background: rgba(255, 255, 255, 0.1); */
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.welcome-modal .modal-left-logo-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.welcome-modal .modal-left-discount-box {
  width: 80px;
  height: 80px;
  background: #E83161;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 40px;
}

.welcome-modal .modal-left-discount-box span {
  font-size: 29px;
  font-weight: 600;
  color: #ffffff;
}

.welcome-modal .modal-left-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  max-width: 370px;
}

.welcome-modal .modal-left-desc {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 365px;
  line-height: 1.5;
}

.welcome-modal .modal-left-btn {
  width: 210px;
  height: 48px;
  background: #E83161;
  /* border: 1px solid #ffffff; */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.welcome-modal .modal-left-btn:hover {
  background: #FFFFFF;
  color: #E73161;
}

.welcome-modal .modal-left-btn:not(.fallback-btn) {
  background: #183158;
}

.welcome-modal .modal-left-btn:not(.fallback-btn) svg path {
  fill: #E73161;
}

.welcome-modal .modal-left-btn:not(.fallback-btn):hover {
  background: #E83161;
  color: #FFFFFF;
}

.welcome-modal .modal-left-btn:not(.fallback-btn):hover svg path {
  fill: #FFFFFF;
}

.welcome-modal .modal-right {
  width: 600px;
  height: 600px;
  padding: 60px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background: #ffffff;
}

.welcome-modal .modal-right .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.welcome-modal .modal-right-logo-box {
  width: 219px;
  height: 60px;
  margin-bottom: 40px;
}

.welcome-modal .modal-right-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.welcome-modal .modal-right-title {
  font-size: 42px;
  font-weight: 600;
  color: #173158;
  margin-bottom: 25px;
  line-height: 1.1;
}

.welcome-modal .modal-right-desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.welcome-modal .modal-right-input {
  width: 100%;
  max-width: 400px;
  height: 50px;
  border: 1px solid #E2E8F0;
  padding: 0 20px;
  font-size: 14px;
  margin-bottom: 25px;
  outline: none;
}

.welcome-modal .modal-right-input:focus {
  border-color: #E83161;
}

.welcome-modal .modal-right-btn {
  width: 100%;
  max-width: 400px;
  height: 50px;
  background: #E73161;
  color: #E73161;
  /* Pink icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-left: 25px; */
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.welcome-modal .modal-right-btn span {
  color: #ffffff;
  /* White text color */
}

.welcome-modal .modal-right-btn:hover {
  background: #0d1f38;
  color: #ffffff;
}

.welcome-modal .modal-right-btn svg {
  flex-shrink: 0;
  color: #ffffff;
}

.welcome-modal .modal-right-btn:hover svg path {
  fill: #E73161 !important;
}

.welcome-modal .modal-right-terms {
  font-size: 12px;
  color: #173158;
  margin-top: 40px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.welcome-modal .modal-right-terms a {
  color: #173158;
  text-decoration: underline;
}

.welcome-modal .slider-left {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.welcome-modal .welcome-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: 50px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.welcome-modal .welcome-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.welcome-modal .welcome-slide .slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-modal .welcome-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: #183158;
  opacity: 0.5;
  /* background: linear-gradient(145deg, rgba(14, 37, 79, 0.7) 0%, rgba(32, 53, 95, 0.5) 55%, rgba(32, 53, 95, 0.4) 100%); */
}

.welcome-modal .welcome-slide .slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.welcome-modal .slider-dots {
  position: absolute;
  left: 60px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.welcome-modal .slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.welcome-modal .slider-dot.is-active {
  background: #ffffff;
}

@media (max-width: 1200px) {
  .welcome-modal .modal-box {
    width: 95vw;
    height: auto;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .welcome-modal .modal-left,
  .welcome-modal .modal-right {
    width: 100%;
    height: auto;
    padding: 40px;
  }

  .welcome-modal .welcome-slide {
    padding: 40px;
    position: relative;
    opacity: 1;
    display: none;
  }

  .welcome-modal .welcome-slide.is-active {
    display: flex;
    width: 322px;
    height: 322px;
  }

  .welcome-modal .slider-dots {
    left: 40px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .welcome-modal .welcome-modal-wrapper {
    position: relative;
    width: 322px;
    margin: 0 auto;
    flex-direction: column;
  }

  .welcome-modal .close-btn-mobile {
    position: absolute;
    top: -40px;
    /* Above the modal box */
    right: 0;
    cursor: pointer;
    z-index: 100;
  }

  .welcome-modal .modal-box {
    width: 322px;
    min-height: auto;
    max-height: 95vh;
    flex-direction: column;
    overflow-y: auto;
    margin: 0 auto;
  }

  .welcome-modal .modal-left {
    width: 322px !important;
    height: 322px !important;
    padding: 0px !important;
    min-height: 322px !important;
  }

  .welcome-modal .modal-right {
    width: 322px !important;
    height: 322px !important;
    padding: 20px 30px !important;
    min-height: 322px !important;
  }

  /* Left Block (Offer/Dynamic) Mobile */
  .welcome-modal .modal-left-logo-box {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    margin-top: 0;
  }

  .welcome-modal .modal-left-logo-box img {
    width: 40px;
    height: 40px;
  }

  .welcome-modal .modal-left-discount-box {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .welcome-modal .modal-left-discount-box span {
    font-size: 18px;
  }

  .welcome-modal .modal-left-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .welcome-modal .modal-left-desc {
    font-size: 12px;
    margin-bottom: 20px;
    max-width: 235px;
    font-weight: 500;
  }

  .welcome-modal .modal-left-btn {
    width: 260px !important;
    height: 40px !important;
    font-size: 12px !important;
    gap: 8px !important;
    background: #E73161 !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    position: relative !important;
  }

  .welcome-modal .modal-left-btn svg {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .welcome-modal .modal-left-btn:not(.fallback-btn) {
    background: #183158 !important;
  }

  .welcome-modal .modal-left-btn:not(.fallback-btn) svg path {
    fill: #E73161 !important;
  }

  .welcome-modal .modal-left-btn:not(.fallback-btn):hover {
    background: #E83161 !important;
  }

  .welcome-modal .modal-left-btn:not(.fallback-btn):hover svg path {
    fill: #FFFFFF !important;
  }

  /* hover state for fallback button */
  .welcome-modal .modal-left-btn.fallback-btn:hover {
    background: #ffffff !important;
    color: #173158 !important;
  }

  .welcome-modal .modal-left-btn.fallback-btn:hover span {
    color: #173158 !important;
  }

  .welcome-modal .modal-left-btn.fallback-btn:hover svg path {
    fill: #E83161 !important;
  }


  .welcome-modal .modal-left-btn span {
    color: #ffffff !important;
  }

  .welcome-modal .modal-left-btn.fallback-btn {
    background: #E83161;
    /* Pink background for fallback button */
    color: #ffffff;
    /* White color for icon and text */
  }

  /* Left Block (Fallback) Mobile */
  .welcome-modal .modal-left-uk-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
  }

  .welcome-modal .modal-left-checklist {
    margin-bottom: 5px !important;
  }

  .welcome-modal .modal-left-checklist li {
    font-size: 10px !important;
    margin-bottom: 5px !important;
    gap: 8px !important;
    font-weight: 500 !important;
    max-width: 250px !important;
  }

  .welcome-modal .modal-left-checklist li svg {
    width: 14px !important;
    height: 14px !important;
  }

  .welcome-modal .modal-left-footer-text {
    font-size: 10px;
    margin-top: 15px;
    max-width: 100%;
  }

  .welcome-modal .modal-left-bg-svg-mobile {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }

  /* Right Block (Form) Mobile */
  .welcome-modal .modal-right-logo-box {
    width: 146px;
    height: 40px;
    margin-bottom: 20px;
  }

  .welcome-modal .modal-right-title {
    font-size: 24px;
    margin-bottom: 15px;
    width: 255px;
  }

  .welcome-modal .modal-right label {
    font-size: 12px !important;
    margin-bottom: 5px !important;
  }

  .welcome-modal .modal-right-input {
    width: 260px !important;
    height: 40px;
    margin-bottom: 15px;
    border: 1px solid #D3D7DE;
  }

  .welcome-modal .modal-right-btn {
    width: 260px;
    height: 40px;
    font-size: 12px;
    padding-left: 15px;
    gap: 10px;
    background: #E83161;
    /* Pink background for mobile form button */
    color: #ffffff;
    /* White color for icon and text */
  }

  .welcome-modal .modal-right-btn span {
    margin-left: 10px !important;
    /* Adjust margin if needed */
  }

  .welcome-modal .modal-right-terms {
    font-size: 8px;
    font-weight: 500;
    margin-top: 20px;
  }

  /* Slider adjustments for mobile */
  .welcome-modal .welcome-slide {
    padding: 25px 30px;
  }

  .welcome-modal .slider-dots {
    left: 30px;
    bottom: 15px;
  }
}

/* Tablet Screens (768px to 1199.98px) */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .welcome-modal .modal-box {
    width: 760px !important;
    max-width: 95vw !important;
    min-height: 520px !important;
    max-height: 95vh !important;
    flex-direction: row !important;
    overflow-y: visible !important;
  }

  .welcome-modal .modal-left {
    width: 50% !important;
    height: 520px !important;
    min-height: 520px !important;
    padding: 0 !important;
    display: flex !important;
  }

  .welcome-modal .modal-right {
    width: 50% !important;
    height: 520px !important;
    min-height: 520px !important;
    padding: 30px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .welcome-modal .welcome-slide {
    padding: 35px !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    display: none !important;
  }

  .welcome-modal .welcome-slide.is-active {
    display: flex !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .welcome-modal .modal-left-logo-box {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
  }

  .welcome-modal .modal-left-logo-box img {
    width: 50px !important;
    height: 50px !important;
  }

  .welcome-modal .modal-left-discount-box {
    width: 60px !important;
    height: 60px !important;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
  }

  .welcome-modal .modal-left-discount-box span {
    font-size: 22px !important;
  }

  .welcome-modal .modal-left-title {
    font-size: 26px !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
    line-height: 1.2 !important;
  }

  .welcome-modal .modal-left-desc {
    font-size: 14px !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }

  .welcome-modal .modal-left-btn {
    width: 180px !important;
    height: 40px !important;
    font-size: 12px !important;
    gap: 8px !important;
  }

  .welcome-modal .modal-right-logo-box {
    width: 180px !important;
    height: 48px !important;
    margin-bottom: 25px !important;
  }

  .welcome-modal .modal-right-title {
    font-size: 28px !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
  }

  .welcome-modal .modal-right-input {
    width: 100% !important;
    max-width: 100% !important;
    height: 45px !important;
    margin-bottom: 20px !important;
  }

  .welcome-modal .modal-right-btn {
    width: 100% !important;
    max-width: 100% !important;
    height: 45px !important;
    font-size: 14px !important;
  }

  .welcome-modal .modal-right-terms {
    margin-top: 25px !important;
    max-width: 100% !important;
    font-size: 10px !important;
  }

  .welcome-modal .slider-dots {
    left: 35px !important;
    bottom: 20px !important;
  }

  .welcome-modal .modal-left-uk-text {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }

  .welcome-modal .modal-left-checklist li {
    font-size: 13px !important;
    margin-bottom: 8px !important;
    gap: 8px !important;
  }

  .welcome-modal .modal-left-checklist li svg {
    width: 15px !important;
    height: 15px !important;
  }

  .welcome-modal .modal-left-footer-text {
    font-size: 11px !important;
    margin-top: 15px !important;
  }
}


.welcome-modal .fallback-slide {
  background: linear-gradient(203.54deg, #E83161 0%, #173158 45.47%) !important;
}

.welcome-modal .modal-left-bg-svg {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.welcome-modal .modal-left-uk-text {
  font-size: 20px;
  color: #E73161;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
  max-width: 380px;
}

.welcome-modal .modal-left-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  z-index: 2;
  position: relative;
}

.welcome-modal .modal-left-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #ffffff;
}

.welcome-modal .modal-left-checklist li svg {
  flex-shrink: 0;
}

.welcome-modal .modal-left-btn.fallback-btn {
  width: 230px;
  height: 48px;
  font-size: 14px;
  z-index: 2;
  position: relative;
}

.welcome-modal .modal-left-footer-text {
  font-size: 12px;
  color: #D1D6DE;
  margin-top: 20px;
  line-height: 1.4;
  font-style: italic;
  max-width: 350px;
  z-index: 2;
  position: relative;
}

/* Sign Up Modal */
.signup-modal .modal-box {
  max-width: 600px;
  padding: 45px 70px;
}

.signup-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--muted-foreground);
  transition: color 0.2s;
  cursor: pointer;
}

.signup-modal .close-btn:hover {
  color: var(--foreground);
}

.signup-modal img {
  height: 60px;
  width: 219px;
  margin-bottom: 30px;
}

.signup-modal h2 {
  font-size: 30px;
  font-weight: 600;
  color: #173158;
  margin-bottom: 20px;
}

.signup-modal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.signup-modal form input,
.signup-modal form select {
  width: 460px;
  height: 50px;
  padding: 0.75rem 1rem;
  border: 1px solid #D3D7DE;
  /* border-radius: var(--radius); */
  font-size: 14px;
  outline: none;
  font-family: inherit;
  background-color: var(--background);
  color: #173158;
}

.signup-modal form input::placeholder {
  color: #173158;
  opacity: 0.8;
}

.signup-modal form input:focus,
.signup-modal form select:focus {
  box-shadow: none;
  border-color: #D3D7DE;
  outline: none;
}

.signup-modal form label {
  font-size: 16px;
  color: #173158;
  margin-bottom: 0.25rem;
  display: block;
}

.signup-modal-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org/2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2210.636%22%20viewBox%3D%220%200%2018%2010.636%22%3E%3Cpath%20id%3D%22arrow-right-line%22%20d%3D%22M22.971%2C12.065%2C16.764%2C5.858%2C18.4%2C4.222l9%2C9-9%2C9-1.636-1.636%2C6.206-6.206%2C1.089-1.157Z%22%20transform%3D%22translate%2822.222%20-16.765%29%20rotate%2890%29%22%20fill%3D%22%23e73161%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 18px 11px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.signup-modal-submit-btn {
  height: 50px;
  background: #E83161;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: inherit;
}

.signup-modal-submit-btn:hover {
  background: #173158;
}

.signup-modal-submit-btn svg {
  position: absolute;
  left: 20px;
  fill: #fff;
}

.signup-modal-submit-btn svg path {
  fill: #fff;
}

.signup-modal-submit-btn:hover svg,
.signup-modal-submit-btn:hover svg path {
  fill: #E73161 !important;
}

@media (max-width: 576px) {
  .signup-modal .modal-box {
    width: 322px !important;
    max-width: 322px !important;
    padding: 30px 31px !important;
    box-sizing: border-box !important;
  }

  .signup-modal img.signup-logo {
    width: 183px !important;
    height: 50px !important;
    margin-bottom: 30px !important;
  }

  .signup-modal h2 {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
  }

  .signup-modal form label {
    font-size: 12px !important;
  }

  .signup-modal form input,
  .signup-modal form select {
    width: 260px !important;
    height: 40px !important;
    font-size: 12px !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
  }

  .signup-modal .signup-modal-submit-btn {
    width: 260px !important;
    height: 40px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
  }

  .signup-modal form input::placeholder {
    color: transparent !important;
    opacity: 0 !important;
  }
}

/* -------------------------------------------
   CATEGORIES PAGE HERO
   ------------------------------------------- */
.page-hero {
  background: var(--kp-navy);
  overflow: hidden;
}

.page-hero .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .page-hero .hero-inner {
    flex-direction: row;
    padding: 4rem 0;
  }
}

.page-hero .hero-text {
  flex: 1;
  color: var(--primary-foreground);
  z-index: 10;
}

.page-hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 2.25rem;
  }
}

.page-hero .hero-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  max-width: 32rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .page-hero .hero-desc {
    font-size: 1rem;
  }
}

.page-hero .hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-hero .hero-img {
  flex-shrink: 0;
  width: 100%;
  height: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero .hero-img {
    width: 360px;
    height: 240px;
  }
}

.page-hero .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------
   BREADCRUMB
   ------------------------------------------- */
.breadcrumb-nav {
  padding: 1rem 0;
}

.breadcrumb-nav p {
  font-size: 14px;
  color: #173158;
}

.breadcrumb-nav a {
  color: #173158;
  transition: color 0.2s;
}

.breadcrumb-nav .separator {
  margin: 0 0.5rem;
}

.breadcrumb-nav .current {
  color: #E83161;
  font-weight: 500;
}

/* -------------------------------------------
   CATEGORY SECTIONS (all-categories page)
   ------------------------------------------- */
/* .cat-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
} */

.cat-section:last-of-type {
  border-bottom: none;
}

.cat-section h2 {
  margin-bottom: 1.5rem;
}

/* Filter buttons responsive */
.cat-filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: var(--background);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  min-width: 180px;
  transition: border-color 0.2s;
}

.cat-filter-btn i {
  font-size: 25px;
  color: #E83161;
}

.cat-shop-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 2px solid #E83161;
  border-radius: 0.375rem;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #E83161;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  width: 226px;
  height: 48px;
  display: flex;
  justify-content: center;
}

.cat-shop-all-btn:hover {
  background: #E83161;
  border-color: #E83161;
  color: #fff;
}

.cat-shop-all-btn:hover svg path {
  fill: #fff;
}

@media (max-width: 575.98px) {
  .cat-shop-all-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    gap: 0.375rem;
  }

  .cat-shop-all-btn i {
    font-size: 0.625rem;
  }
}

@media (max-width: 991.98px) {
  .cat-section-header {
    align-items: flex-start;
  }

  .cat-section-header .cat-filter-btn {
    display: none !important;
  }

  .cat-slider-slide {
    width: calc(25% - 0.94rem) !important;
    min-width: 220px !important;
  }

  .cat-mobile-slider .product-card-v2 .card-info {
    padding-top: 0.75rem;
  }
}

/* -- Mobile category slider -- */
.cat-desktop-slider {
  position: relative;
}

.cat-slider-viewport {
  overflow: hidden;
}

.cat-slider-slide-desktop {
  flex: 0 0 25%;
  min-width: 0;
  /* margin-right: 1rem; */
}

.cat-slider-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0.5rem;
  background: #ff2a78;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 12px 24px rgba(255, 42, 120, 0.25);
}

.cat-slider-nav i {
  font-size: 1.1rem;
  line-height: 1;
}

.cat-slider-prev {
  left: -0.5rem;
}

.cat-slider-next {
  right: -0.5rem;
}

.cat-slider-dots-desktop {
  margin-top: 1.25rem;
}

/* .cat-mobile-slider {
  position: relative;
  overflow: hidden;
} */

.cat-slider-track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
}

.cat-slider-slide {
  flex: 0 0;
  min-width: 0;
  /* margin-right: 1rem; */
}

.cat-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}

.cat-slider-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.cat-slider-dot.active {
  background: var(--accent);
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 1399.98px) {
  .cat-slider-slide-desktop {
    flex-basis: calc(33.333% - 1rem);
  }
}

@media (max-width: 1199.98px) {
  .cat-slider-slide-desktop {
    flex-basis: calc(50% - 1rem);
  }
}

/* Product card meta responsive — mobile only */
@media (max-width: 767.98px) {

  /* ── Section Title: 24px semibold + 30×30 icon box on right ── */
  .home-shop-cat .kp-section-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px !important;
  }

  .home-anim-reasons {
    height: 633px !important;
  }

  .reasons-dots {
    margin-top: 30px !important;
  }

  .home-shop-cat .kp-section-title .mob-title-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #E83161;
    flex-shrink: 0;
    transition: background 0.2s;
    cursor: pointer;
    color: #E83161;
  }

  .home-shop-cat .kp-section-title .mob-title-icon:hover {
    background: #E73161;
  }

  .home-shop-cat .kp-section-title .mob-title-icon:hover svg path {
    fill: #FFFFFF;
  }

  /* .home-shop-cat .kp-section-title .mob-title-icon svg {
    width: 14px;
    height: 14px;
  } */

  /* ── Filter panel tabs: 34×34 icon + 98×34 text ── */
  .shop-categories-toolbar {
    margin-bottom: 10px !important;
    margin-left: 0 !important;
    margin-right: calc((100vw - 100%) / -2) !important;
    width: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .shop-cat-tabs-scroll {
    gap: 8px !important;
    padding: 5px max(15px, calc((100vw - 322px) / 2)) 5px 0px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .shop-cat-tabs-scroll::-webkit-scrollbar {
    display: none !important;
  }

  .shop-cat-tab {
    width: auto !important;
    height: 34px !important;
    gap: 2px !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
  }

  .shop-cat-tab .tab-icon-box {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    background: #F7F8F9 !important;
    /* border: 1px solid #edf1f7 !important; */
    border-radius: 0 !important;
  }

  .shop-cat-tab .tab-text-box {
    width: 98px !important;
    height: 34px !important;
    font-size: 12px !important;
    padding: 0 8px !important;
    background: #F7F8F9 !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #183158 !important;
    font-weight: 500 !important;
  }

  .shop-cat-tab.active .tab-icon-box {
    background: #E83161 !important;
    border-color: #E83161 !important;
    color: #fff !important;
  }

  .shop-cat-tab.active .shop-cat-tab-icon {
    filter: brightness(0) invert(1) !important;
  }

  .shop-cat-tab.active i.fa,
  .shop-cat-tab.active i.fas,
  .shop-cat-tab.active i.far,
  .shop-cat-tab.active i.fab,
  .shop-cat-tab.active i.bi {
    color: #fff !important;
  }

  .shop-cat-tab.active .tab-text-box {
    background: #E83161 !important;
    color: #fff !important;
    border-color: #E83161 !important;
  }

  .shop-cat-tabs-scroll .cat-shop-all-btn,
  .home-shop-cat .cat-shop-all-btn {
    display: none !important;
  }

  /* ── Slider Layout ── */
  .home-shop-cat-slider-wrap {
    /* position: relative; */
    padding: 0 !important;
    /* margin: 0 -15px !important; Counteract container padding to reach screen edges */
    overflow: visible !important;
    width: auto !important;
  }

  .cat-mobile-slider {
    position: relative !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .cat-slider-track {
    display: flex !important;
    /* overflow-x: auto !important;
    overflow-y: hidden !important; */
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 0 0px 0px !important;
    gap: 0 !important;
  }

  .cat-slider-track::-webkit-scrollbar {
    display: none !important;
  }

  .cat-slider-slide {
    width: 213px !important;
    min-width: 213px !important;
    display: flex !important;
    justify-content: flex-start !important;
    padding: 0 !important;
  }

  /* ── Product Card ── */
  .product-card-v2 {
    width: 203px !important;
    max-width: 203px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    position: relative !important;
  }

  .product-card-v2 .card-img {
    width: 203px !important;
    height: 203px !important;
    padding: 0 !important;
    border: 2px solid #edf1f7 !important;
    background: #fff !important;
  }

  /* Discount Tag */
  .product-card-v2 .tag {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 33px !important;
    height: 30px !important;
    background: #E83161 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
  }

  /* Card Info */
  .product-card-v2 .card-info {
    padding: 12px 0 !important;
    text-align: left !important;
  }

  .product-card-v2 .card-info .card-meta {
    font-size: 8px !important;
    color: #5D6F8A !important;
    margin-bottom: 5px !important;
    gap: 4px !important;
    display: flex !important;
    align-items: center !important;
  }

  .product-card-v2 .card-info .card-meta span {
    color: #5D6F8A !important;
  }

  .product-card-v2 .card-info .card-meta .brand-name {
    color: #183158 !important;
    font-weight: 500 !important;
  }

  .product-card-v2 .card-info h3 {
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #183158 !important;
    margin-bottom: 5px !important;
    max-height: 50px !important;
    overflow: hidden !important;
  }

  .product-card-v2 .card-info .card-variants {
    font-size: 8px !important;
    color: #64748b !important;
    margin-bottom: 12px !important;
    font-weight: 500 !important;
  }

  /* Buy Button: 30x30 Box */
  .product-card-v2 .card-info .buy-btn {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    padding: 0 !important;
    background: #fff !important;
    border: 2px solid #E83161 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
  }

  .product-card-v2 .card-info .buy-btn svg.d-md-none {
    width: 10px !important;
    height: 10px !important;
  }

  .product-card-v2 .card-info .buy-btn svg.d-md-none path {
    fill: #E83161 !important;
  }

  .product-card-v2 .card-info .buy-btn:hover {
    background: #E73161 !important;
    border-color: #E73161 !important;
  }

  .product-card-v2 .card-info .buy-btn:hover svg.d-md-none path {
    fill: #FFFFFF !important;
  }

  /* ── Slider Arrows ── */
  .cat-mobile-slider .shop-slider-arrow {
    width: 40px !important;
    height: 40px !important;
    position: absolute !important;
    top: 101.5px !important;
    /* Center on 203px image */
    transform: translateY(-50%) !important;
    z-index: 100 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .cat-mobile-slider .shop-slider-prev {
    left: calc((100vw - 100%) / -2) !important;
    background: #EDEFF2;
  }

  .cat-mobile-slider .shop-slider-prev svg path {
    fill: #fff !important;
  }

  .cat-mobile-slider .shop-slider-next {
    right: calc((100vw - 100%) / -2) !important;
    background: #E83161;
  }

  .cat-mobile-slider .shop-slider-next svg path {
    fill: #fff !important;
  }

  /* Dots */
  .cat-slider-dots {
    margin-top: 35px !important;
    margin-bottom: 50px !important;
  }
}

/* -------------------------------------------
   SUBCATEGORY TABS
   ------------------------------------------- */
.sub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sub-tabs button {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  transition: all 0.2s;
}

.sub-tabs button:hover {
  border-color: var(--accent);
}

.sub-tabs button.active {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

/* -------------------------------------------
   PAGINATION
   ------------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.pagination button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--muted);
  color: var(--foreground);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination button:hover {
  background: rgba(225, 29, 109, 0.1);
}

.pagination button.active {
  background: var(--accent);
  color: var(--accent-foreground);
}

/* -------------------------------------------
   GRID TOGGLE
   ------------------------------------------- */
.grid-toggle {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.grid-toggle:hover {
  background: var(--muted);
}

.grid-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
}

/* -------------------------------------------
   404 PAGE
   ------------------------------------------- */
.not-found {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  text-align: center;
}

.not-found h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.not-found a {
  color: var(--primary);
  text-decoration: underline;
}

.not-found a:hover {
  opacity: 0.9;
}

/* -------------------------------------------
   UTILITY CLASSES
   ------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

/* -------------------------------------------
   HOME PAGE
   ------------------------------------------- */

/* -- Home Hero -- */
.home-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .home-hero {
    height: 500px;
  }
}

.home-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 45, 80, 0.9), rgba(26, 45, 80, 0.7), transparent);
}

.home-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.home-hero-text {
  max-width: 32rem;
}

.home-hero-text h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .home-hero-text h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .home-hero-text h1 {
    font-size: 3rem;
  }
}

.home-hero-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .home-hero-text p {
    font-size: 1.125rem;
  }
}

/* -- Benefits Bar -- */
.benefits-bar {
  background: var(--muted);
  padding: 1.25rem 0;
  /* border-bottom: 1px solid var(--border); */
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefits-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefits-grid li svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.benefits-grid li p {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* -- Brand Logos -- */
.brand-logos {
  padding: 50px 0 70px;
  /* border-bottom: 1px solid var(--border); */
}

.brand-logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow-x: auto;
}

.brand-logos-row span {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(100, 116, 139, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .brand-logos-row span {
    font-size: 1.25rem;
  }
}

/* -- Shop by Categories -- */
.shop-categories {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .shop-categories {
    padding: 4rem 0;
  }
}

.shop-categories .kp-section-title {
  margin-bottom: 2rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .cat-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cat-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background-color 0.2s;
}

.cat-card:hover .cat-icon {
  background: rgba(225, 29, 109, 0.1);
}

.cat-card span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  text-align: center;
}

@media (min-width: 768px) {
  .cat-card span {
    font-size: 0.875rem;
  }
}

/* -- About KeyPar -- */
.about-keypar {
  padding: 3rem 0;
  background: var(--muted);
}

@media (min-width: 768px) {
  .about-keypar {
    padding: 4rem 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text .kp-section-title {
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.stat-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(225, 29, 109, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.stat-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-images img {
  border-radius: 0.75rem;
  object-fit: cover;
  width: 100%;
  height: 12rem;
}

@media (min-width: 768px) {
  .about-images img {
    height: 16rem;
  }
}

/* -- Featured Products -- */
.featured-products {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .featured-products {
    padding: 4rem 0;
  }
}

.featured-products .kp-section-title {
  margin-bottom: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  background: var(--background);
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
  width: 100%;
  height: 8rem;
  background: var(--muted);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.product-name {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.product-rrp {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.product-btn {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
}

/* -- Discover Brands -- */
.discover-brands {
  padding: 3rem 0;
  background: var(--muted);
}

@media (min-width: 768px) {
  .discover-brands {
    padding: 4rem 0;
  }
}

.discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .discover-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.discover-text .kp-section-title {
  margin-bottom: 0.5rem;
}

.discover-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .discover-text h3 {
    font-size: 1.5rem;
  }
}

.discover-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.discover-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.discover-checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.discover-checks li i {
  color: var(--accent);
}

.discover-checks li span {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
}

.discover-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.discover-images img {
  border-radius: 0.75rem;
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.discover-images img.span-2 {
  grid-column: span 2;
}

/* -- Reviews -- */
.reviews-section {
  padding: 3rem 0;
  background: #FFFFFF;
}

@media (min-width: 768px) {
  .reviews-section {
    padding: 4rem 0;
  }
}

.reviews-section .kp-section-title {
  margin-bottom: 0;
}

.reviews-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 80px;
}

.reviews-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 5px 12px;
  border: 2px solid #E83161;
  color: #E83161;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  width: 180px;
  height: 48px;
  transition: background 0.3s ease, color 0.3s ease;
}

.reviews-see-all:hover {
  background: var(--accent);
  color: #fff;
}

.reviews-strip {
  /* position: relative; */
  display: flex;
  align-items: stretch;
  gap: 0.9rem;
}

.reviews-score-card {
  position: relative;
  z-index: 2;
  flex: 0 0 320px;
  min-height: 320px;
  background: #F7F8F9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
}

.reviews-score-number {
  margin-top: 0.55rem;
  font-size: 36px;
  font-weight: 600;
  color: #173158;
  line-height: 1;
}

.reviews-score-label {
  margin-top: 0.3rem;
  font-size: 24px;
  font-weight: 600;
  color: #173158;
}

.reviews-track-wrap {
  position: relative;
  overflow: visible;
  flex: 1;
  scrollbar-width: none;
  z-index: 1;
  clip-path: inset(-20px -100vw -20px 0px);
}

.reviews-track-wrap::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 0.85rem;
  min-width: max-content;
  transition: transform 0.35s ease;
  will-change: transform;
}

.kp-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: #E83161;
  /* color: #fff; */
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.kp-slider-nav:disabled,
.kp-slider-nav.disabled {
  background: #EDEFF2 !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* .kp-slider-nav:disabled svg path,
.kp-slider-nav.disabled svg path {
  fill: #adb5bd !important;
} */

.kp-slider-nav svg {
  width: 21px;
  height: 23px;
}

.reviews-desktop-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  /* background: rgba(255, 255, 255, 0.96); */
  color: var(--primary);
  /* box-shadow: 0 3px 12px rgba(19, 32, 56, 0.16); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.reviews-desktop-prev {
  left: 0px;
}

.reviews-desktop-next {
  right: 0px;
}

.reviews-desktop-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Subscribe button - PC Screen */
.subscribe-open-btn {
  width: 210px !important;
  height: 60px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

/* Grid display for sm+ */
.d-sm-grid {
  display: none !important;
}

@media (min-width: 576px) {
  .d-sm-grid {
    display: grid !important;
  }
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.reviews-rating .stars i {
  color: var(--accent);
  font-size: 1.25rem;
}

.rating-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.rating-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-card {
  border: 2px solid #EDEFF2;
  border-radius: 0;
  padding: 1.25rem;
  background: #ffffff;
}

.reviews-score-card .review-stars {
  width: 160px;
  height: 23px;
  margin-bottom: 25px;
  display: flex;
  gap: 7px;
}

.reviews-score-card .review-stars i {
  color: #E73161;
  font-size: 24px;
}

.review-card .review-stars {
  width: 113px;
  height: 16px;
  display: flex;
  gap: 7px;
}

.review-card .review-stars i {
  color: #E73161;
  font-size: 16px;
  width: 17px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card-inline {
  width: 320px;
  min-height: 320px;
  padding: 30px;
}

.review-meta {
  font-size: 14px;
  color: #5D6F8A;
  margin-bottom: 13px;
  line-height: 1.25;
}

.review-text {
  font-size: 0.875rem;
  color: #324560;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.review-mobile-slider {
  position: relative;
  padding: 0 2.2rem;
}

.review-mobile-slider .shop-slider-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.review-mobile-slider .shop-slider-prev {
  left: 0;
}

.review-mobile-slider .shop-slider-next {
  right: 0;
}

.review-mobile-slider .cat-slider-track {
  gap: 0;
}

.review-mobile-slider .cat-slider-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin-right: 0 !important;
  display: flex;
  justify-content: center;
}

.review-mobile-slider .review-card {
  width: min(92%, 360px);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .review-mobile-slider {
    padding: 0 2.4rem;
  }

  .review-mobile-slider .cat-slider-slide {
    flex: 0 0 50%;
    min-width: 50%;
    padding: 0 0.4rem;
  }

  .review-mobile-slider .review-card {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .reviews-section {
    background: #FFFFFF;
    height: auto;
    padding-bottom: 0px !important;
  }

  .reviews-topbar {
    margin-bottom: 0.75rem;
  }

  /* ───────── Reviews Mobile Overrides ───────── */
  .reviews-section .reviews-topbar {
    margin-bottom: 24px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .reviews-section h2.kp-section-title {
    font-size: 24px !important;
    font-weight: 600 !important;
  }

  .reviews-see-all {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #E83161 !important;
  }

  .reviews-see-all svg {
    width: 9px !important;
    height: 9px !important;
    margin: 0 !important;
  }

  .review-mobile-slider .review-slider-prev {
    left: calc((100vw - 330px) / -2) !important;
  }

  .review-mobile-slider .review-slider-next {
    right: calc((100vw - 330px) / -2) !important;
  }

  /* Rating Summary Box */
  .rating-summary {
    width: 322px !important;
    height: 322px !important;
    min-height: 322px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #F7F8F9 !important;
    padding: 30px !important;
    margin-bottom: 25px !important;
  }

  .rating-summary .stars {
    margin-bottom: 15px !important;
    display: flex !important;
    gap: 5px !important;
  }

  .rating-summary .stars svg {
    width: 30px !important;
    height: 30px !important;
    fill: #E83161 !important;
    color: #E83161 !important;
  }

  .rating-num {
    font-size: 36px !important;
    font-weight: 600 !important;
    color: #173158 !important;
    display: block !important;
  }

  .rating-label {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #173158 !important;
    display: block !important;
  }

  /* Review Cards Slider */
  .review-mobile-slider {
    padding-bottom: 20px !important;
  }

  .review-mobile-slider .cat-slider-slide {
    width: 300px !important;
  }

  .review-mobile-slider .review-card {
    width: 300px !important;
    height: 300px !important;
    min-height: 300px !important;
    padding: 30px !important;
    border: 1px solid #EDEFF2 !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
  }

  .review-stars {
    margin-bottom: 15px !important;
    display: flex !important;
    gap: 4px !important;
  }

  .review-stars i {
    font-size: 16px !important;
    color: #E83161 !important;
  }

  .review-meta {
    font-size: 14px !important;
    color: #5D6F8A !important;
    margin-bottom: 15px !important;
  }

  .review-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #152C50 !important;
  }

  /* Navigation Arrows */
  .review-mobile-slider .kp-slider-nav {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .review-mobile-slider .kp-slider-nav svg {
    width: 14px !important;
    height: 14px !important;
  }

  .review-mobile-slider .cat-slider-dots {
    margin-top: 30px !important;
  }

  /* ── Stay Updated Section ── */
  .stay-updated-section {
    padding: 40px 0 !important;
    margin-bottom: 0px !important;
  }

  .stay-updated-wrapper {
    align-items: center !important;
  }

  .stay-updated-text-box {
    width: 322px !important;
    height: 322px !important;
    /* margin: 0 auto 20px !important; */
    padding: 30px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .stay-updated-text-box h2 {
    font-size: 36px !important;
    font-weight: bold !important;
    line-height: 1.1 !important;
    margin-bottom: 15px !important;
  }

  .stay-updated-subtext {
    font-size: 14px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    opacity: 0.9 !important;
  }

  .stay-updated-small-text {
    font-size: 10px !important;
    line-height: 1.3 !important;
    opacity: 0.7 !important;
  }

  .stay-updated-image-box {
    width: 322px !important;
    height: 322px !important;
    margin: 0 auto !important;
    position: relative !important;
  }

  .stay-updated-image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .stay-updated-bg-svg svg {
    width: 163px !important;
    height: 163px !important;
  }

  .stay-updated-arrow-mob svg {
    width: 40px !important;
    height: 40px !important;
  }

  /* Subscribe button - Mobile Screen */
  .subscribe-open-btn {
    width: 260px !important;
    height: 48px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
  }

  .stay-updated-mobile-wrapper .subscribe-open-btn {
    transition: background-color 0.2s, color 0.2s;
  }

  .stay-updated-mobile-wrapper .subscribe-open-btn:hover,
  .stay-updated-mobile-wrapper .subscribe-open-btn:active {
    background: #FFFFFF !important;
    color: #173158 !important;
  }

  .stay-updated-mobile-wrapper .subscribe-open-btn:hover svg path,
  .stay-updated-mobile-wrapper .subscribe-open-btn:active svg path {
    fill: #E83161 !important;
  }

  /* ── Support & FAQ Mobile styles ── */
  .support-mobile-box {
    background: #F8F9FA !important;
    padding: 40px 10px !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .support-mob-title {
    font-size: 36px !important;
    width: 300px !important;
    margin: 0 auto 20px !important;
    line-height: 1.1 !important;
    color: #152C50 !important;
    font-weight: bold !important;
  }

  .support-mob-subtext {
    font-size: 18px !important;
    line-height: 1.3 !important;
    color: #183158 !important;
    margin: 0 auto 15px !important;
    max-width: 320px !important;
  }

  .support-mob-small {
    font-size: 12px !important;
    line-height: 1.4 !important;
    opacity: 0.8 !important;
    margin: 0 auto 20px !important;
    color: #152C50 !important;
    max-width: 320px !important;
  }

  .support-mob-btn {
    width: 260px !important;
    height: 48px !important;
    background: #E83161 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 auto !important;
  }

  .faq-mobile-box {
    width: 322px !important;
    height: 322px !important;
    margin: 0 auto !important;
    padding: 20px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    margin-bottom: 10% !important;
  }

  .faq-mob-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #152C50 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  .faq-mob-subtext {
    font-size: 12px !important;
    color: #152C50 !important;
    opacity: 0.7 !important;
    text-align: left !important;
  }

  .faq-mob-item-text {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #152C50 !important;
  }
}

/* -- Stay Updated -- */
.stay-updated {
  padding: 3rem 0;
  background: var(--accent);
}

@media (min-width: 768px) {
  .stay-updated {
    padding: 4rem 0;
  }
}

.stay-updated-inner {
  max-width: 42rem;
}

.stay-updated h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-foreground);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .stay-updated h2 {
    font-size: 1.875rem;
  }
}

.stay-updated p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
}

@media (min-width: 576px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--foreground);
}

.newsletter-form input:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.newsletter-form button {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  transition: opacity 0.2s;
  font-family: inherit;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* -- Stay Updated (duplicate removed � styles in main STAY UPDATED block) -- */

/* -- Support & FAQ -- */
.support-faq {
  padding: 3rem 0;
  background: var(--muted);
}

@media (min-width: 768px) {
  .support-faq {
    padding: 4rem 0;
  }
}

.support-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .support-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.support-col .kp-section-title {
  margin-bottom: 0.75rem;
}

.support-col p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.support-col img {
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  max-width: 200px;
  object-fit: cover;
}

.faq-col .kp-section-title {
  margin-bottom: 1.5rem;
}

.faq-col>p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-list button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
  text-align: left;
  font-family: inherit;
}

.faq-list button:hover {
  border-color: var(--accent);
}

.faq-list button span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.faq-list button i {
  color: var(--muted-foreground);
  flex-shrink: 0;
}

/* -------------------------------------------
   ABOUT / CONTACT PAGES
   ------------------------------------------- */
.trusted-section,
.vm-section,
.reasons-navy,
.pink-blocks,
.team-section,
.journey-section,
.careers-section,
.contact-section,
.contact-map-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {

  .trusted-section,
  .vm-section,
  .reasons-navy,
  .pink-blocks,
  .team-section,
  .journey-section,
  .careers-section,
  .contact-section,
  .contact-map-section {
    padding: 4.5rem 0;
  }
}

.trusted-grid,
.vm-grid,
.journey-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {

  .trusted-grid,
  .journey-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }

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

.trusted-text h2,
.journey-card h2,
.careers-inner h2,
.team-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.trusted-text p,
.journey-card p,
.careers-inner p,
.contact-form-desc,
.sf-desc,
.vm-pink-card p,
.reason-nav-card p,
.pink-block-right p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.95rem;
}

.trusted-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trusted-images img,
.journey-img,
.support-img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.trusted-images img {
  height: 12rem;
}

@media (min-width: 768px) {
  .trusted-images img {
    height: 14rem;
  }
}

.vm-pink-card,
.vm-navy-card,
.contact-info-card,
.contact-form-card,
.journey-card,
.careers-inner,
.reason-nav-card,
.pink-block-left,
.pink-block-right,
.team-card {
  border-radius: 1rem;
}

.vm-pink-card,
.contact-info-card,
.contact-form-card,
.journey-card,
.careers-inner,
.pink-block-left,
.pink-block-right,
.team-card {
  background: var(--background);
  border: 1px solid var(--border);
}

.vm-pink-card,
.vm-navy-card {
  padding: 1.5rem;
}

.vm-pink-card {
  background: var(--accent);
  display: grid;
  gap: 1.25rem;
}

.vm-pink-card>div {
  background: var(--background);
  padding: 1.25rem;
}

.vm-pink-card h3,
.vm-navy-card h3,
.contact-info-card h2,
.contact-form-card h2,
.journey-card h2,
.careers-inner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.vm-navy-card {
  background: var(--kp-navy);
  color: var(--primary-foreground);
}

.vm-navy-card h3 {
  color: var(--primary-foreground);
}

.vm-stats {
  display: grid;
  gap: 1rem;
}

.vm-stats li {
  display: grid;
  gap: 0.2rem;
}

.vm-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.vm-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.reasons-navy {
  background: var(--kp-navy);
}

.reasons-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .reasons-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .reasons-nav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.reason-nav-card {
  padding: 1.25rem 1.1rem 1.1rem 1.1rem;
  border: 1px solid rgba(225, 29, 109, 0.75);
  background: rgba(255, 255, 255, 0.02);
  color: var(--primary-foreground);
}

.reason-nav-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reason-nav-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
}

.reasons-navy .row>* {
  display: flex;
}

.reasons-navy .reason-nav-card {
  width: 100%;
}

.pink-blocks-list {
  display: grid;
  gap: 1rem;
}

.pink-block {
  display: grid;
  gap: 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .pink-block {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.pink-block-left,
.pink-block-right {
  padding: 1.25rem;
}

@media (min-width: 768px) {

  .pink-block-left,
  .pink-block-right {
    padding: 1.75rem;
  }
}

.pink-block-left {
  background: #ffe5ef;
}

.pink-block-left h3,
.pink-block-arrow {
  color: var(--accent);
}

.pink-block-left h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.pink-block-left ul {
  display: grid;
  gap: 0.55rem;
}

.pink-block-left ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

.pink-block-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.pink-block-arrow {
  font-size: 1.75rem;
  align-self: flex-end;
}

.team-heading {
  margin-bottom: 1.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.team-card {
  overflow: hidden;
}

.team-photo {
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.team-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 1.75rem;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.35rem;
}

.team-info {
  padding: 1rem 1.25rem 1.25rem;
}

.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.journey-grid {
  align-items: stretch;
}

.journey-card,
.careers-inner,
.contact-info-card,
.contact-form-card {
  padding: 1.5rem;
}

.journey-img {
  height: 18rem;
}

@media (min-width: 768px) {
  .journey-img {
    height: 100%;
    min-height: 24rem;
  }
}

.careers-inner {
  text-align: center;
}

.contact-page-section {
  padding-top: 1.5rem;
}

.contact-page-shell {
  max-width: 1180px;
}

.contact-page-grid {
  align-items: stretch;
}

.contact-info-card {
  background: var(--kp-navy);
  color: var(--primary-foreground);
  min-height: 100%;
}

.contact-info-card h2 {
  color: var(--primary-foreground);
}

.contact-info-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-info-label {
  font-size: 12px;
  letter-spacing: 0.02em;
  /* color: rgba(255,255,255,0.72); */
  margin-bottom: 0.25rem;
}

.contact-info-title {
  font-size: 40px !important;
  font-weight: 600 !important;
}

.contact-info-highlight {
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.6;
  color: var(--accent);
}

.contact-info-highlight:hover {
  color: var(--accent);
}

.contact-info-card {
  overflow: hidden;
}

.contact-form-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-panel h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.contact-form-desc {
  margin-bottom: 1.1rem;
}

.contact-form-lead {
  font-size: 13px;
  line-height: 1.6;
}

.contact-input,
.contact-select,
.contact-textarea {
  border-color: var(--border);
  color: var(--foreground);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--muted-foreground);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(225, 29, 109, 0.15);
}

.contact-select-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.contact-help-btn {
  width: fit-content;
  justify-content: center;
  padding-inline: 1.35rem;
  min-width: 10rem;
}

.contact-submit-btn {
  width: 100%;
}

.contact-form-panel .card-body {
  height: 100%;
}

.contact-form-panel .form-control-lg,
.contact-form-panel .form-select-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

@media (max-width: 767.98px) {
  .contact-page-section {
    padding-top: 1rem;
  }

  .contact-help-btn {
    width: 100%;
    min-width: 0;
  }
}

.contact-map-wrap {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  min-height: 22rem;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.newsletter-shell {
  text-align: center;
}

.newsletter-shell-inner {
  max-width: 42rem;
  margin: 0 auto;
}

/* Pro motion layer for Categories, About and Contact pages */
.page-motion {
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-spring: cubic-bezier(0.22, 1.25, 0.36, 1);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shine-x: 50%;
  --shine-y: 50%;
  --parallax-y: 0px;
}

.page-motion .motion-hero {
  isolation: isolate;
}

.page-motion .motion-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(900px) rotateX(58deg) translate3d(0, -34%, 0);
  transform-origin: top center;
  animation: motionGridDrift 14s linear infinite;
}

.page-motion .motion-hero .kp-container {
  position: relative;
  z-index: 1;
}

.page-motion .hero-split-left::after,
.page-motion .motion-sheen::after,
.page-motion .product-card-v2 .card-img::after,
.page-motion .contact-map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34) 48%, transparent 76%);
  transform: translate3d(-120%, 0, 0);
}

.page-motion .hero-slide.is-active .hero-split-left::after,
.page-motion .motion-sheen.anim-visible::after {
  animation: motionSheen 1.1s var(--motion-ease) 0.18s both;
}

.page-motion .motion-section {
  position: relative;
  isolation: isolate;
}

.page-motion .motion-section::before {
  content: '';
  position: absolute;
  left: max(1rem, calc((100vw - 1400px) / 2));
  right: max(1rem, calc((100vw - 1400px) / 2));
  top: 0;
  height: 1px;
  z-index: -1;
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 109, 0.45), rgba(26, 45, 80, 0.22), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: motionRuleGrow 1.4s var(--motion-ease) both;
  animation-delay: calc(var(--motion-section-index, 0) * 80ms);
}

.page-motion .motion-section-head {
  position: relative;
}

.page-motion .motion-section-head .kp-section-title {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--primary), var(--accent));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  /* color: transparent; */
  animation: motionTitleSweep 4s var(--motion-ease) infinite alternate;
}

.anim-blur-up {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 34px, 0) scale(0.98);
  transition:
    opacity 0.9s var(--motion-ease),
    filter 0.9s var(--motion-ease),
    transform 0.9s var(--motion-ease);
}

.anim-card-rise {
  opacity: 0;
  transform: translate3d(0, 42px, 0) rotateX(7deg) scale(0.96);
  transform-origin: 50% 90%;
  transition:
    opacity 0.85s var(--motion-spring),
    transform 0.85s var(--motion-spring),
    box-shadow 0.35s ease;
  transition-delay: calc(var(--motion-index, 0) * 55ms);
}

.anim-slide-soft {
  opacity: 0;
  transform: translate3d(-24px, 18px, 0);
  transition:
    opacity 0.7s var(--motion-ease),
    transform 0.7s var(--motion-ease);
  transition-delay: calc(var(--motion-index, 0) * 60ms);
}

.anim-visible.anim-blur-up,
.anim-visible.anim-card-rise,
.anim-visible.anim-slide-soft {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translate3d(0, 0, 0) rotateX(0) scale(1) !important;
}

.page-motion .motion-tilt {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--parallax-y), 0);
  transform-style: preserve-3d;
  transition:
    transform 0.22s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  will-change: transform;
}

.page-motion .motion-tilt:hover {
  z-index: 2;
}

.page-motion .motion-card {
  position: relative;
  /* border-radius: 0.75rem; */
}

.page-motion .motion-card::before,
.page-motion .contact-info-card::before,
.page-motion .contact-form-card::before,
.page-motion .about-vm-frame::before,
.page-motion .about-vm-right::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: inherit;
  /* background: radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255, 255, 255, 0.38), transparent 34%); */
  transition: opacity 0.25s ease;
}

.page-motion .motion-card:hover::before,
.page-motion .contact-info-card:hover::before,
.page-motion .contact-form-card:hover::before,
.page-motion .about-vm-frame:hover::before,
.page-motion .about-vm-right:hover::before {
  opacity: 1;
}

.page-motion .product-card-v2 {
  border-radius: 0.75rem;
  /* padding: 0.35rem; */
}

.page-motion .product-card-v2:hover {
  box-shadow: 0 22px 50px rgba(26, 45, 80, 0.16);
}

.page-motion .product-card-v2:hover .card-img::after {
  animation: motionSheen 0.8s var(--motion-ease) both;
}

.page-motion .product-card-v2 .buy-btn,
.page-motion .kp-btn-pink,
.page-motion .cat-shop-all-btn {
  position: relative;
  overflow: hidden;
}

/* .page-motion .product-card-v2 .buy-btn::after,
.page-motion .kp-btn-pink::after,
.page-motion .cat-shop-all-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translate3d(-120%, 0, 0);
  opacity: 0;
} */

.page-motion .product-card-v2 .buy-btn:hover::after,
.page-motion .kp-btn-pink:hover::after,
.page-motion .cat-shop-all-btn:hover::after {
  animation: motionSheen 0.72s var(--motion-ease) both;
}

.page-motion .motion-media:not(.motion-tilt) {
  transform: translate3d(0, var(--parallax-y), 0);
  transition: transform 0.18s linear;
  will-change: transform;
}

.page-motion .about-hero-image {
  transform: scale(1.04);
  transition: transform 0.8s var(--motion-ease);
}

.page-motion .about-hero-image-wrap:hover .about-hero-image {
  transform: scale(1.14);
}

.page-motion .about-hero-copy {
  position: relative;
  overflow: hidden;
}

.page-motion .about-hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background:
    linear-gradient(90deg, rgba(225, 29, 109, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(26, 45, 80, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
  animation: motionGridDrift 18s linear infinite;
}

.page-motion .about-reasons-section .motion-card {
  overflow: hidden;
  border-color: rgba(231, 47, 104, 0.95) !important;
}

.page-motion .about-reasons-section .motion-card:hover {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.page-motion .contact-info-card,
.page-motion .contact-form-card,
.page-motion .contact-map-wrap {
  position: relative;
  overflow: hidden;
}

.page-motion .contact-info-card {
  box-shadow: 0 28px 70px rgba(26, 45, 80, 0.2) !important;
}

.page-motion .contact-form-card {
  box-shadow: 0 28px 70px rgba(26, 45, 80, 0.12) !important;
}

.page-motion .contact-input,
.page-motion .contact-select,
.page-motion .contact-textarea {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.page-motion .contact-input:focus,
.page-motion .contact-select:focus,
.page-motion .contact-textarea:focus {
  transform: translate3d(0, -2px, 0);
  background-color: #fff;
  box-shadow: 0 14px 34px rgba(225, 29, 109, 0.13), 0 0 0 0.18rem rgba(225, 29, 109, 0.13);
}

.page-motion .contact-info-highlight {
  display: inline-block;
  transition: transform 0.25s var(--motion-spring), color 0.25s ease;
}

.page-motion .contact-info-highlight:hover {
  transform: translate3d(8px, 0, 0);
}

.page-motion .contact-map-wrap {
  min-height: 25rem;
  box-shadow: 0 28px 70px rgba(26, 45, 80, 0.13);
}

.page-motion .contact-map-wrap iframe {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
}

@keyframes motionSheen {
  0% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(120%, 0, 0);
  }
}

@keyframes motionGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 128px 64px, 64px 128px;
  }
}

@keyframes motionRuleGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes motionTitleSweep {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@media (max-width: 767.98px) {
  .page-motion .motion-hero::before {
    opacity: 0.18;
    background-size: 44px 44px;
  }

  .page-motion .motion-tilt,
  .page-motion .motion-media {
    transform: none;
  }

  .anim-card-rise {
    transform: translate3d(0, 26px, 0) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {

  .page-motion *,
  .page-motion *::before,
  .page-motion *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .anim-blur-up,
  .anim-card-rise,
  .anim-slide-soft {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

.support-section-title {
  margin-bottom: 0.75rem;
}

.support-section-title-lg {
  margin-bottom: 1.5rem;
}

.support-btn-sm {
  font-size: 0.875rem;
}

/* Newsletter form alias used by About/Contact pages */
.stay-updated .su-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .stay-updated .su-form {
    flex-direction: row;
  }
}

.stay-updated .su-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--foreground);
}

.stay-updated .su-form input:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.stay-updated .su-form button {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  transition: opacity 0.2s;
  font-family: inherit;
}

.stay-updated .su-form button:hover {
  opacity: 0.9;
}


.cat-slider-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 0 !important;
  background: #f3f4f6 !important;
  border: none !important;
  margin: 0 4px !important;
  padding: 0 !important;
  transition: all 0.2s !important;
}

.cat-slider-dot.active {
  background: #E83161 !important;
}

/* Reviews desktop arrows edge-to-edge alignment override */
.reviews-section {
  position: relative !important;
}

@media (min-width: 712px) {
  .reviews-section .reviews-desktop-prev {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: #E83161 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 20 !important;
    border-radius: 0 !important;
  }

  .reviews-section .reviews-desktop-next {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: #E83161 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 20 !important;
    border-radius: 0 !important;
  }

  .reviews-section .reviews-desktop-prev svg,
  .reviews-section .reviews-desktop-next svg {
    display: inline-block !important;
    width: 21px !important;
    height: 23px !important;
  }

  .reviews-section .reviews-desktop-prev:disabled,
  .reviews-section .reviews-desktop-next:disabled {
    background: #EDEFF2 !important;
    cursor: not-allowed !important;
  }
}

/* ── Tablet & Laptop Header Responsiveness (768px to 1639.98px) ── */
@media (min-width: 712px) and (max-width: 1639.98px) {

  .topbar .kp-container,
  .site-header .kp-container,
  .main-nav .kp-container {
    width: 100%;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .site-header .logo-link img {
    height: 54px;
    width: auto;
  }

  .main-nav>.kp-container>ul>li {
    min-width: 0;
  }

  .main-nav>.kp-container>ul>li>a {
    font-size: 14px;
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
  }

  .nav-mega-layout {
    grid-template-columns: 27% 73%;
  }

  .nav-mega-image {
    width: 100% !important;
    height: auto !important;
    max-width: 398px;
  }

  .nav-mega-hero-content p {
    width: 100% !important;
    max-width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1639.98px) {
  .site-header .header-inner {
    gap: 1rem;
  }

  .site-header .header-right {
    gap: 1rem;
  }

  .site-header .util-nav {
    gap: 15px;
    margin: 0 15px;
  }

  .site-header .header-actions>.kp-nav-link {
    margin-right: 20px;
  }

  .site-header .search-box {
    flex: 0 1 300px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-mega-menu {
    padding: 1.5rem 1.5rem 1.5rem;
  }

  .nav-mega-columns {
    margin-left: 15px;
    gap: 0.75rem;
  }
}

/* Laptop: mega menu width aligns with main nav buttons row above */
@media (min-width: 992px) and (max-width: 1560.98px) {
  .nav-mega-menu {
    width: auto;
    max-width: none;
    left: 40px;
    right: 40px;
    transform: translateY(12px);
  }

  .nav-mega-item.is-open .nav-mega-menu,
  .nav-mega-item:focus-within .nav-mega-menu {
    transform: translateY(0);
  }
}

/* ── Specific Rules for Tablet Screens Only (768px to 991.98px) ── */
@media (min-width: 712px) and (max-width: 991.98px) {
  .main-nav {
    display: none !important;
  }

  .site-header .search-box {
    display: flex !important;
    flex: 1 1 auto !important;
    max-width: 350px !important;
    margin: auto !important;
  }

  .site-header .mobile-search-trigger {
    display: none !important;
  }

  /* Padding left/right 20px on tablet screens */
  .topbar .kp-container,
  .site-header .kp-container,
  .reviews-section .kp-container,
  .stay-updated-section .kp-container,
  .support-faq-section .kp-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ── Tablet & Laptop Footer Responsiveness (712px to 1639.98px) ── */
@media (min-width: 712px) and (max-width: 1639.98px) {
  .site-footer .footer-split {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  .site-footer .footer-left-panel,
  .site-footer .footer-right-panel {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .site-footer .footer-left-panel .footer-panel-inner {
    padding: 60px 40px 60px !important;
    min-height: auto !important;
  }

  .site-footer .footer-right-panel .footer-panel-inner {
    padding: 60px 40px 60px !important;
    min-height: auto !important;
  }

  .site-footer .footer-left-panel h2 {
    font-size: 36px !important;
    line-height: 1.15 !important;
    max-width: 100% !important;
  }

  .site-footer .footer-lead {
    font-size: 15px !important;
    margin-bottom: 30px !important;
    max-width: 100% !important;
  }

  .site-footer .footer-action-row {
    margin-bottom: 40px !important;
  }

  .site-footer .footer-support-box {
    margin-bottom: 40px !important;
  }

  .site-footer .footer-brand-row {
    margin-top: 50px !important;
  }

  .site-footer .footer-columns {
    gap: 1.5rem !important;
    margin-bottom: 40px !important;
  }

  .site-footer .footer-columns h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }

  .site-footer .footer-columns ul li a {
    font-size: 14px !important;
  }

  .site-footer .footer-legal-links {
    margin-top: auto !important;
    margin-bottom: 15px !important;
  }
}

/* Override footer legal links margin for screen widths up to 1280px */
@media (min-width: 712px) and (max-width: 1280px) {
  .site-footer .footer-legal-links {
    margin-bottom: 0px !important;
  }
}

/* Add footer columns vertical stacking on tablet viewports */
@media (min-width: 712px) and (max-width: 991.98px) {
  .site-footer .footer-split {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* Toggle mobile and desktop footer visibility at 712px */
@media (min-width: 712px) {
  .site-footer .footer-split {
    display: flex !important;
  }

  .site-footer .footer-mobile-wrapper {
    display: none !important;
  }
}

/* ── Tablet & Laptop Reviews Responsiveness (712px to 1639.98px) ── */
@media (min-width: 712px) and (max-width: 1639.98px) {

  /* Hide the mobile reviews layout on tablet & laptop */
  html body .reviews-section .d-lg-none {
    display: none !important;
  }

  /* Show the desktop horizontal reviews layout on tablet & laptop */
  html body .reviews-section .reviews-desktop {
    display: block !important;
  }

  html body .reviews-section .kp-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    position: relative !important;
  }

  html body .reviews-section .reviews-track-wrap {
    overflow: visible !important;
  }

  html body .reviews-section .reviews-desktop-prev {
    left: 0 !important;
    right: auto !important;
  }

  html body .reviews-section .reviews-desktop-next {
    right: 0 !important;
    left: auto !important;
  }

  html body .reviews-section .reviews-topbar {
    margin-bottom: 40px !important;
  }
}

/* Make cards narrower on smaller screen widths (712px to 1199.98px) to fit horizontally */
@media (min-width: 712px) and (max-width: 1199.98px) {
  html body .reviews-section .review-card-inline {
    width: 280px !important;
    min-width: 280px !important;
  }
}

/* ── Stay Updated Section Responsiveness (712px to 1639.98px) ── */
@media (min-width: 712px) and (max-width: 1639.98px) {

  /* Hide the mobile stay updated layout and show the PC/tablet layout starting at 712px */
  html body .stay-updated-section .stay-updated-mobile-wrapper.d-md-none {
    display: none !important;
  }

  html body .stay-updated-section .d-none.d-md-block {
    display: block !important;
  }

  html body .stay-updated-section .kp-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  /* Make text elements scale cleanly */
  html body .stay-updated-section h2 {
    font-weight: 600 !important;
    line-height: 1.15 !important;
  }

  html body .stay-updated-section p.mb-3 {
    line-height: 1.3 !important;
  }

  html body .stay-updated-section p.mb-4.mb-md-5 {
    font-size: 14px !important;
    line-height: 1.4 !important;
    width: 500px !important;
  }

  /* Adjust subscribe button size slightly */
  html body .stay-updated-section .subscribe-open-btn {
    height: 48px !important;
    font-size: 14px !important;
  }
}

/* Tablet Specific: Side-by-side horizontal (712px to 991.98px) */
@media (min-width: 712px) and (max-width: 991.98px) {

  /* Horizontal row direction */
  html body .stay-updated-section .d-flex.flex-column.flex-lg-row {
    flex-direction: row !important;
    max-height: 320px !important;
    height: 320px !important;
    min-height: 320px !important;
  }

  /* Flexible left text box */
  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:first-child {
    flex-grow: 1 !important;
    width: auto !important;
    height: 100% !important;
    padding: 30px 40px !important;
  }

  /* Right-hand image box is side-by-side (240px width) */
  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:last-child {
    width: 240px !important;
    min-width: 240px !important;
    height: 100% !important;
    flex-shrink: 0 !important;
  }

  /* Hide secondary descriptive text on tablet screens */
  html body .stay-updated-section p.mb-4.mb-md-5 {
    display: none !important;
  }

  /* Typography sizes for full width stacked content */
  html body .stay-updated-section h2 {
    font-size: clamp(1.8rem, 4.5vw, 42px) !important;
  }

  html body .stay-updated-section p.mb-3 {
    font-size: clamp(1rem, 2.5vw, 24px) !important;
  }

  /* Decorative SVG sizes for tablet */
  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:first-child>div.position-absolute:last-child svg {
    width: clamp(150px, 15vw, 220px) !important;
    height: auto !important;
  }

  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:last-child>div.position-absolute {
    top: 2rem !important;
    left: 2rem !important;
  }

  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:last-child>div.position-absolute svg {
    width: 50px !important;
    height: auto !important;
  }
}

/* Laptop Specific: Side-by-side horizontal (992px to 1639.98px) */
@media (min-width: 992px) and (max-width: 1639.98px) {

  /* Match desktop split: ~1030px text + 600px image at 1640, scaled fluidly */
  html body .stay-updated-section .d-flex.flex-column.flex-lg-row {
    flex-direction: row !important;
    align-items: stretch !important;
    max-height: 600px !important;
    height: clamp(380px, 36.6vw, 600px) !important;
    min-height: 380px !important;
  }

  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:first-child {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    height: 100% !important;
    padding: clamp(28px, 3vw, 50px) clamp(24px, 4vw, 70px) !important;
    overflow: hidden !important;
  }

  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:last-child {
    width: clamp(280px, 36.585%, 600px) !important;
    min-width: 280px !important;
    max-width: 600px !important;
    height: 100% !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
  }

  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:last-child img {
    object-position: center 22% !important;
  }

  /* Typography — fluid like desktop, no fixed widths that clip text */
  html body .stay-updated-section h2 {
    font-size: clamp(1.75rem, 3.5vw, 60px) !important;
    max-width: 100% !important;
    margin-bottom: clamp(8px, 1vw, 16px) !important;
  }

  html body .stay-updated-section p.mb-3 {
    font-size: clamp(1rem, 1.8vw, 36px) !important;
    max-width: 100% !important;
    width: auto !important;
    margin-bottom: clamp(0.5rem, 1.2vw, 1rem) !important;
  }

  html body .stay-updated-section p.mb-4.mb-md-5 {
    display: block !important;
    font-size: clamp(12px, 1.1vw, 16px) !important;
    max-width: 100% !important;
    width: auto !important;
    margin-bottom: clamp(0.75rem, 2vw, 3rem) !important;
  }

  /* Decorative SVG sizes for laptop */
  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:first-child>div.position-absolute:last-child svg {
    width: clamp(140px, 18vw, 302px) !important;
    height: auto !important;
  }

  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:last-child>div.position-absolute {
    top: clamp(1rem, 2.2vw, 3.5rem) !important;
    left: clamp(1rem, 2.2vw, 3.5rem) !important;
  }

  html body .stay-updated-section .d-flex.flex-column.flex-lg-row>div:last-child>div.position-absolute svg {
    width: clamp(36px, 4.5vw, 74px) !important;
    height: auto !important;
  }
}

.support-faq-tablet-svg {
  display: none !important;
}

/* ── Support & FAQ Responsiveness (712px to 1639.98px) ── */
@media (min-width: 712px) and (max-width: 1639.98px) {

  /* Toggle visibility of mobile and desktop support-faq layout at 712px */
  html body .support-faq-section .support-faq-mobile-wrapper.d-md-none {
    display: none !important;
  }

  html body .support-faq-section .d-none.d-md-flex {
    display: flex !important;
  }

  html body .support-faq-section .kp-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  /* Make typography responsive */
  html body .support-faq-section h2 {
    font-weight: 600 !important;
    line-height: 1.15 !important;
  }

  html body .support-faq-section p {
    line-height: 1.1 !important;
  }
}

/* Tablet Specific (712px to 991.98px) */
@media (min-width: 712px) and (max-width: 991.98px) {

  /* Stack content vertically */
  html body .support-faq-section .d-none.d-md-flex {
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 60px 0 !important;
    gap: 40px !important;
  }

  /* Left text content block */
  html body .support-faq-section .d-none.d-md-flex>div:nth-child(2) {
    width: 100% !important;
    padding: 0 !important;
    text-align: left !important;
  }

  /* Right FAQ Box */
  html body .support-faq-section .d-none.d-md-flex>div:last-child {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    padding: 40px !important;
  }

  /* Hide background SVG on tablet */
  html body .support-faq-section .d-none.d-md-flex>div.position-absolute {
    display: none !important;
  }

  /* Show tablet background SVG */
  html body .support-faq-section .support-faq-tablet-svg {
    display: block !important;
  }

  /* Typography for tablet stacked layout */
  html body .support-faq-section h2 {
    font-size: clamp(1.8rem, 4vw, 36px) !important;
  }

  /* html body .support-faq-section p {
    font-size: 16px !important;
  } */

  html body .support-faq-section .d-none.d-md-flex>div:last-child h2 {
    font-size: 28px !important;
  }

  html body .support-faq-section .d-none.d-md-flex>div:last-child span {
    font-size: 18px !important;
  }

  /* ── Blog / Learning Hub: Tablet (712px to 991.98px) ── */
  /* Keep desktop slider visible; hide mobile */
  html body .home-anim-blog .d-md-none {
    display: none !important;
  }

  html body .home-anim-blog .blog-desktop-slider {
    display: block !important;
  }

  /* Constrain container */
  html body .home-anim-blog .kp-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Clip the track wrapper so slides don't overflow */
  html body .home-anim-blog .blog-desktop-slider>div {
    overflow: hidden !important;
    width: 100% !important;
  }

  /* Track: flex row, no wrap, 2 visible at a time */
  html body .home-anim-blog .blog-slider-track {
    width: 100% !important;
  }

  /* Each slide takes exactly 50% of the visible track minus the gap */
  html body .home-anim-blog .blog-slider-slide {
    width: calc(50% - 15px) !important;
    min-width: calc(50% - 15px) !important;
    flex-shrink: 0 !important;
  }

  /* Image box: full slide width, square aspect ratio */
  html body .home-anim-blog .blog-slider-slide .overflow-hidden {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  /* Typography */
  html body .home-anim-blog .blog-card h3 {
    font-size: clamp(14px, 2vw, 18px) !important;
    height: auto !important;
    min-height: 44px !important;
    margin-bottom: 12px !important;
  }

  /* Header row buttons */
  html body .home-anim-blog a.d-flex.d-md-none {
    display: none !important;
  }

  html body .home-anim-blog a.d-none.d-md-flex {
    display: flex !important;
    font-size: 12px !important;
    width: 140px !important;
    height: 40px !important;
  }

  /* Slider arrows */
  html body .home-anim-blog .blog-slider-prev {
    left: -20px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 30 !important;
  }

  html body .home-anim-blog .blog-slider-next {
    right: -20px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 30 !important;
  }

  html body .home-anim-blog .blog-slider-prev svg,
  html body .home-anim-blog .blog-slider-next svg {
    width: 14px !important;
    height: 14px !important;
  }
}

/* Laptop Specific (992px to 1639.98px) */
@media (min-width: 992px) and (max-width: 1639.98px) {

  /* Horizontal layout */
  html body .support-faq-section .d-none.d-md-flex {
    flex-direction: row !important;
    height: auto !important;
    min-height: 520px !important;
    max-height: none !important;
    padding: 60px 0 !important;
    gap: clamp(2rem, 5vw, 60px) !important;
  }

  /* Left text content block */
  html body .support-faq-section .d-none.d-md-flex>div:nth-child(2) {
    flex-grow: 1 !important;
  }

  /* Right FAQ Box */
  html body .support-faq-section .d-none.d-md-flex>div:last-child {
    width: 38% !important;
    min-width: 350px !important;
    height: auto !important;
    min-height: 480px !important;
    padding: 40px !important;
    flex-shrink: 0 !important;
  }

  /* Scale background SVG on laptop */
  html body .support-faq-section .d-none.d-md-flex>div.position-absolute {
    left: 48% !important;
    transform: translateX(-47%) !important;
  }

  html body .support-faq-section .d-none.d-md-flex>div.position-absolute svg {
    width: clamp(250px, 30vw, 400px) !important;
    height: auto !important;
  }

  /* Typography for laptop view */
  html body .support-faq-section h2 {
    font-size: clamp(1.75rem, 3vw, 42px) !important;
  }

  /* html body .support-faq-section p {
    font-size: 15px !important;
  } */

  html body .support-faq-section .d-none.d-md-flex>div:last-child h2 {
    font-size: clamp(1.5rem, 2.5vw, 36px) !important;
  }

  html body .support-faq-section .d-none.d-md-flex>div:last-child span {
    font-size: clamp(1rem, 1.6vw, 20px) !important;
  }

  /* ── Blog / Learning Hub: Laptop (992px to 1639.98px) ── */
  /* Keep desktop slider visible; hide mobile */
  html body .home-anim-blog .d-md-none {
    display: none !important;
  }

  html body .home-anim-blog .blog-desktop-slider {
    display: block !important;
  }

  /* Constrain container */
  html body .home-anim-blog .kp-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  /* Clip the track wrapper so slides don't overflow */
  html body .home-anim-blog .blog-desktop-slider>div {
    overflow: hidden !important;
    width: 100% !important;
  }

  /* Track: flex row */
  html body .home-anim-blog .blog-slider-track {
    width: 100% !important;
  }

  /* Each slide: 3 columns with 40px gaps */
  html body .home-anim-blog .blog-slider-slide {
    width: calc((100% - 80px) / 3) !important;
    min-width: calc((100% - 80px) / 3) !important;
    flex-shrink: 0 !important;
  }

  /* Image box: full slide width, shorter on laptop */
  html body .home-anim-blog .blog-slider-slide .overflow-hidden {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  /* Typography */
  html body .home-anim-blog .blog-card h3 {
    font-size: clamp(18px, 2.2vw, 22px) !important;
    height: auto !important;
    min-height: 56px !important;
    margin-bottom: 18px !important;
  }

  /* Header row buttons */
  html body .home-anim-blog a.d-flex.d-md-none {
    display: none !important;
  }

  html body .home-anim-blog a.d-none.d-md-flex {
    display: flex !important;
  }

  /* Slider arrows: inside the padded container */
  html body .home-anim-blog .blog-slider-prev {
    left: -40px !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 30 !important;
  }

  html body .home-anim-blog .blog-slider-next {
    right: -40px !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 30 !important;
  }

  html body .home-anim-blog .blog-slider-prev svg,
  html body .home-anim-blog .blog-slider-next svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* -------------------------------------------
   Hover fix: keep pink SVG arrows visible when
   the button's background flips to pink on hover.
   The arrow path has inline fill="#E83161" which
   blends into the pink hover background — flip
   the path fill to white to keep it visible.
   ------------------------------------------- */
.about-btn-outline.about-btn-pink svg path,
.blog-see-all-btn svg path,
.blog-read-more-btn svg path,
.cat-shop-all-btn svg path,
.product-card-v2 .card-info .buy-btn svg path,
.reviews-see-all svg path,
.pc-btn-signup svg path,
.about-section .btn.btn-outline-dark svg path {
  transition: fill 0.3s ease;
}

.about-btn-outline.about-btn-pink:hover svg path,
.blog-see-all-btn:hover svg path,
.blog-read-more-btn:hover svg path,
.cat-shop-all-btn:hover svg path,
.product-card-v2 .card-info .buy-btn:hover svg path,
.reviews-see-all:hover svg path,
.pc-btn-signup:hover svg path,
.about-section .btn.btn-outline-dark:hover svg path {
  fill: #ffffff !important;
}

.pc-btn-signup:hover {
  background: #E83161 !important;
  border-color: #E83161 !important;
  color: #fff !important;
}

/* ── Tablet Overrides for Reviews, Stay-Updated, and FAQ Padding ── */
@media (min-width: 712px) and (max-width: 991.98px) {

  html body .reviews-section .kp-container,
  html body .stay-updated-section .kp-container,
  html body .support-faq-section .kp-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (min-width: 768px) {
  .stay-updated-section {
    margin-bottom: 100px !important;
  }
}

.support-faq-section,
.support-faq-section .bg-light {
  background-color: #F7F8F9 !important;
}

.home-anim-blog .cat-slider-dot,
.home-anim-blog .cat-slider-dot.active {
  border-radius: 0 !important;
}

/* Custom Discount Badge Formatting */
.pc-badge-percent {
  font-size: 0.55em !important;
  font-weight: 700 !important;
  display: inline-block !important;
  transform: translateY(-0.25em) !important;
  margin-left: 0.05em !important;
  line-height: 1 !important;
}

@media (min-width: 768px) {

  .product-card-v2 .tag,
  .cat-section .product-card-v2 .tag,
  .cat-section .product-card-v2 .card-img .tag {
    font-size: 20px !important;
    font-weight: 700 !important;
  }
}

/* Tablet (712px to 991.98px) Mobile-Style Banners Overrides (All Pages) */
@media (min-width: 712px) and (max-width: 991.98px) {

  html body .hero-section .d-md-none>div,
  html body .hero-section .hero-split-wrap-mobile>div,
  html body .kp-mobile-banner>div,
  html body .kp-mobile-banner-content,
  html body .kp-mobile-banner-img-container,
  html body .hero-split-left-mob,
  html body .hero-split-right-mob,
  html body .cat-mobile-top-bar {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Signup validation error styles */
.signup-input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

.signup-field-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 500;
  display: block;
  text-align: left;
}