/* ===== XRT65 FITNESS - PREMIUM eCommerce CSS ===== */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;600;900&family=Poppins:wght@300;400;500;600;700&display=swap'); */

@font-face {
  font-family: 'Sprintura';
  src: url('../assets/fonts/sprintura.otf') format('opentype');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sprintura Demo';
  src: url('../assets/fonts/sprintura.otf') format('opentype');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sprintura Extrude';
  src: url('../assets/fonts/sprintura-extrude.otf') format('opentype');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Sprintura Outline';
  src: url('../assets/fonts/sprintura-outline.otf') format('opentype');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary: #0075B0;
  --primary-dark: #003D6B;
  --primary-light: #00A5DE;
  --accent: #00A5DE;
  --dark: #0D0D0D;
  --dark-secondary: #003D6B;
  --dark-card: #002c4d;
  --dark-surface: #141414;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-500: #6C757D;
  --gray-600: #495057;
  --white: #FFFFFF;
  --gold: #FFD700;
  --success: #2ECC71;
  --gradient-primary: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #004D7A 101.11%);
  --gradient-dark: linear-gradient(135deg, #0D0D0D, #003D6B);
  --gradient-hero: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(0, 61, 107, 0.85));
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(0, 117, 176, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  font-family: "Bai Jamjuree" !important;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
} */

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}


/* ===== NAVBAR ===== */
.navbar-xrt {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1050;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
}

.navbar-xrt.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand-xrt {
  /* font-family: 'Poppins', sans-serif; */
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white) !important;
  letter-spacing: 2px;
}

.navbar-brand-xrt span {
  color: var(--primary);
}

.nav-link-xrt {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px !important;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link-xrt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link-xrt:hover {
  color: var(--white) !important;
}

.nav-link-xrt:hover::after,
.nav-link-xrt.active::after {
  width: 60%;
}

.nav-icon-btn {
  color: var(--white);
  font-size: 1.2rem;
  position: relative;
  padding: 8px 12px;
  transition: var(--transition);
}

.nav-icon-btn:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.cart-badge,
.nav-icon-link .nav-wishlist-count,
.nav-icon-link .nav-cart-count {
  position: absolute;
  top: -7px;
  right: -10px;
  background: #003D6B;
  /* Solid Teal from brand color */
  color: #FFFFFF;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 5;
}

.nav-icon-link {
  position: relative;
  display: inline-flex;
}

/* ===== HERO SECTION ===== */
/* .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(13, 13, 13, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-400);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-product-img {
  
  max-height: 450px;
}

.hero-slider-section {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}

.hero-swiper {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-slide {
  width: 100%;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}

.hero-slide-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--primary);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: var(--transition);
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 991px) {
  .hero-slide-img {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .hero-slide-img {
    height: 280px;
  }

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .hero-swiper .swiper-button-next::after,
  .hero-swiper .swiper-button-prev::after {
    font-size: 0.9rem;
  }
} */

/* ===== BUTTONS ===== */
.btn-xrt {
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-xrt {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.btn-primary-xrt:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
  color: var(--white);
}

.btn-outline-xrt {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-xrt:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-dark-xrt {
  background: var(--dark);
  color: var(--white);
}

.btn-dark-xrt:hover {
  background: var(--dark-secondary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-sm-xrt {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-cart-xrt {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cart-xrt:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 57, 70, 0.2);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card img {
  height: 140px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.category-card p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 57, 70, 0.2);
}

.product-card .product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .product-img-wrap img {
  object-fit: contain;
  transition: var(--transition-slow);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.1);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge-sale {
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
}

.badge-new {
  background: var(--success);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
}

.product-actions-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 2;
}

.product-card:hover .product-actions-overlay {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--dark);
  font-size: 0.9rem;
}

.product-action-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  color: var(--gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-title {
  /* font-family: 'Poppins', sans-serif; */
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.product-rating i {
  color: var(--gold);
  font-size: 0.8rem;
}

.product-rating span {
  color: var(--gray-500);
  font-size: 0.8rem;
  margin-left: 4px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  margin-top: auto;
}

.product-price {
  /* font-family: 'Poppins', sans-serif; */
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--dark);
}

.product-price-old {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.product-price-discount {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--dark);
  color: var(--white);
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.3);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--primary-light);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(230, 57, 70, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
  /* font-family: Georgia, serif; */
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h6 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.testimonial-author small {
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.offer-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.offer-content {
  position: relative;
  z-index: 2;
}

.offer-discount {
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.offer-discount span {
  font-size: 2rem;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--gray-100);
}

.newsletter-input-wrap {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.newsletter-input-wrap input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 0.95rem;
  outline: none;
  /* font-family: 'Poppins', sans-serif; */
}

.newsletter-input-wrap button {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  /* font-family: 'Poppins', sans-serif; */
  white-space: nowrap;
}

.newsletter-input-wrap button:hover {
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #003D6B 1.15%, #0075B0 55%, #00A5DE 100%);
  color: #9fc5c4;
  padding: 64px 37px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #003D6B 1.15%, #0075B0 55%, #00A5DE 100%);
  pointer-events: none;
}

.footer-wrapper,
.footer-bottom {
  position: relative;
  z-index: 1;
  /* width: min(100%, 1450px); */
  margin: 0 auto;
  padding-left: clamp(16px, 2.2vw, 30px);
  padding-right: clamp(16px, 2.2vw, 30px);
}

.footer-wrapper {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(520px, 1.25fr);
  column-gap: clamp(32px, 7vw, 120px);
  align-items: start;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-bottom: 34px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 155px;
  height: 44px;
  aspect-ratio: 155/44;
}

.footer-tagline {
  border-radius: 0px;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-family: "Sprintura Demo";
  font-size: clamp(26px, 2.6vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  color: transparent;
  position: relative;
  left: 90px;
}

.newsletter-box {
  position: relative;
  background: url('../images/footerback.png') center/cover no-repeat;
  padding: 24px;
  max-width: 540px;
  min-height: 300px;
  width: 100%;
  overflow: hidden;
}

/* Color overlay */
.newsletter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 165, 222, 0.6);
  /* your color */
  mix-blend-mode: multiply;
  /* try overlay / soft-light also */
  pointer-events: none;
}

/* .newsletter-box::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 165px;
  height: 95px;
  background: linear-gradient(135deg, rgba(142, 219, 216, 0.32) 5%, rgba(142, 219, 216, 0.02) 78%);
  clip-path: polygon(32% 0, 100% 0, 100% 70%, 62% 70%, 45% 56%);
  opacity: 0.9;
  pointer-events: none;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: 6px;
  right: 56px;
  width: 86px;
  height: 54px;
  background: linear-gradient(135deg, rgba(165, 230, 227, 0.22) 5%, rgba(165, 230, 227, 0) 80%);
  clip-path: polygon(0 0, 84% 0, 100% 28%, 26% 100%);
  opacity: 0.85;
  pointer-events: none;
} */

.newsletter-box::before,
.newsletter-box::after {
  display: none;
}

.newsletter-vector {
  position: absolute;
  top: -28px;
  right: -100px;
  width: auto;
  height: auto;
  opacity: 0.45;
  pointer-events: none;
}

.newsletter-title {
  padding-bottom: 10px;
  padding-top: 15px;
  color: #fff;
  font-size: 19.202px;
  font-style: normal;
  font-weight: 700;
  line-height: 33.603px;
  position: relative;
  top: 15px;
}

.newsletter-input {
  display: flex;
  align-items: center;
  background: #bfd0d1;
  border-radius: 999px;
  width: 75%;
  min-height: 58px;
  /* padding: 6px;
  margin-bottom: 16px;
  max-width: 360px; */
}

.newsletter-input input {
  border: none;
  padding: 10px 14px 10px 18px;
  color: #003C39;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  flex: 1;
  min-width: 0;
}

.newsletter-input input::placeholder {
  color: #4e6f70;
}

.newsletter-input button {
  width: 56px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #0ab2ad, #068a88);
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
  cursor: pointer;
}

.newsletter-input>svg {
  width: clamp(52px, 7vw, 85px);
  height: clamp(52px, 7vw, 85px);
  flex-shrink: 0;
  margin-right: 4px;
}

.newsletter-text {
  width: auto;
  max-width: 360px;
  height: auto;
  color: #D0DAF5;
  font-size: clamp(14px, 1.2vw, 16.802px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
  margin-top: 20px;
}

.footer-right {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 18px 34px;
  align-content: start;
  padding-top: 2px;
}

.footer-col h6 {
  color: #fff;
  font-size: clamp(18px, 1.7vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: 33.603px;
  /* 152.743% */
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(15px, 1.25vw, 19.202px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: -54px;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(520px, 1.25fr);
  column-gap: 120px;
  align-items: start;
}

.footer-bottom-right {
  grid-column: 2;
  justify-self: stretch;
  width: 100%;
  border-top: 1px solid rgba(113, 177, 174, 0.2);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-links a {
  color: #c2ebea;
  font-size: 0.93rem;
  text-decoration: none;
  font-weight: 500;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.footer-social a {
  width: 34px;
  height: 34px;
  /* border: 1px solid rgba(132, 197, 195, 0.28); */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a5d1cf;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  border-color: #25b6b2;
  color: #ddffff;
  /* background: rgba(37, 182, 178, 0.16); */
}

.footer-social a.social-linkedin:hover {
  color: #0a66c2;
}

.footer-social a.social-facebook:hover {
  color: #1877f2;
}

.footer-social a.social-twitter:hover {
  color: #000000;
}

.footer-social a.social-instagram:hover {
  color: #e4405f;
}

.footer-social a.social-youtube:hover {
  color: #ff0000;
}

@media (max-width: 992px) {
  .footer {
    padding: 54px 0 28px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .footer-bottom-right {
    grid-column: 1;
  }

  .footer-right {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {

  .footer-wrapper,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-brand-row {
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  .footer-tagline {
    font-size: clamp(22px, 5vw, 30px);
    left: 0;
  }

  .newsletter-box {
    max-width: 100%;
    min-height: auto;
    padding: 30px 18px 20px;
  }

  .newsletter-vector {
    right: -36px;
    top: -16px;
    width: 132px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .footer-bottom-right {
    grid-column: 1 / -1;
    padding-top: 14px;
    flex-wrap: wrap;
  }

  .footer-links,
  .footer-social {
    justify-self: start;
  }

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

@media (max-width: 560px) {
  .footer-right {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-bottom-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-links {
    gap: 18px;
    flex-wrap: wrap;
  }

  .newsletter-input {
    min-height: 50px;
  }

  .newsletter-input>svg {
    width: 48px;
    height: 48px;
    margin-right: 2px;
  }

  .newsletter-text {
    margin-top: 26px;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .footer {
    padding: 44px 0 22px;
  }

  .footer-brand-row {
    gap: 10px;
    margin-bottom: 14px;
  }

  .logo img {
    width: 130px;
    height: auto;
  }

  .footer-col h6 {
    margin-bottom: 8px;
  }

  .footer-col a {
    margin-bottom: 6px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }
}

/* ===== PRODUCT LISTING PAGE ===== */
.page-header {
  background: var(--dark);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(230, 57, 70, 0.12) 0%, transparent 60%);
}

.breadcrumb-xrt {
  background: none;
  padding: 0;
  margin-bottom: 10px;
}

.breadcrumb-xrt .breadcrumb-item a {
  color: var(--gray-400);
  font-size: 0.85rem;
}

.breadcrumb-xrt .breadcrumb-item.active {
  color: var(--primary-light);
  font-size: 0.85rem;
}

.breadcrumb-xrt .breadcrumb-item+.breadcrumb-item::before {
  color: var(--gray-500);
}

/* Filters Sidebar */
.filter-sidebar {
  position: sticky;
  top: 100px;
}

.filter-group {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
}

.filter-group h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.filter-group .form-check {
  margin-bottom: 10px;
}

.filter-group .form-check-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
}

.filter-group .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.price-range-slider {
  margin-top: 10px;
}

.price-range-slider input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.sort-select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  /* font-family: 'Poppins', sans-serif; */
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}

.sort-select:focus {
  border-color: var(--primary);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  /* background: var(--gray-100); */
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 16px;
}

.gallery-main img {
  object-fit: contain;
  transition: var(--transition);
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  /* background: var(--gray-100); */
  padding: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--primary);
}

.gallery-thumb img {
  max-height: 100%;
  object-fit: contain;
}

.product-detail-info .product-detail-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-right: 12px;
}

.product-detail-price-old {
  font-size: 1.2rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.weight-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.weight-option {
  padding: 10px 24px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--white);
}

.weight-option:hover,
.weight-option.active {
  border-color: var(--primary);
  background: rgba(230, 57, 70, 0.05);
  color: var(--primary);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.qty-control button:hover {
  background: var(--gray-200);
}

.qty-control input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-weight: 600;
  /* font-family: 'Poppins', sans-serif; */
  outline: none;
}

.tabs-xrt .nav-tabs {
  border-bottom: 2px solid var(--gray-200);
}

.tabs-xrt .nav-link {
  color: var(--gray-500);
  font-weight: 600;
  border: none;
  padding: 12px 24px;
  position: relative;
}

.tabs-xrt .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.tabs-xrt .nav-link.active {
  color: var(--primary);
  background: none;
}

.tabs-xrt .nav-link.active::after {
  width: 100%;
}

.spec-table {
  width: 100%;
}

.spec-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.spec-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 40%;
}

.spec-table td:last-child {
  color: var(--gray-600);
}

/* Review Card */
.review-card {
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-date {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.review-stars {
  color: var(--gold);
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== CART PAGE ===== */
.cart-table {
  width: 100%;
}

.cart-table th {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 12px;
  border-bottom: 2px solid var(--gray-200);
}

.cart-table td {
  padding: 20px 12px;
  vertical-align: middle;
  border-bottom: 1px solid var(--gray-200);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-variant {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.cart-remove-btn:hover {
  color: var(--primary);
}

.cart-summary {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.cart-summary h5 {
  font-weight: 600;
  margin-bottom: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
}

.cart-summary-row.total {
  border-top: 2px solid var(--gray-300);
  margin-top: 10px;
  padding-top: 16px;
  font-weight: 600;
  font-size: 1.15rem;
}

/* ===== QUICK VIEW MODAL ===== */
.modal-xrt .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.modal-xrt .modal-header {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px;
}

.modal-xrt .modal-body {
  padding: 24px;
}

.modal-xrt .btn-close {
  opacity: 0.5;
}

.modal-xrt .btn-close:hover {
  opacity: 1;
}

/* ===== OFFER POPUP ===== */
.offer-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.offer-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.offer-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 90%;
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition-slow);
  position: relative;
}

.offer-popup-overlay.show .offer-popup {
  transform: scale(1);
}

.offer-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
  transition: var(--transition);
}

.offer-popup-close:hover {
  background: var(--primary);
  color: var(--white);
}

.offer-popup-header {
  background: var(--gradient-primary);
  padding: 40px 30px;
  text-align: center;
  color: var(--white);
}

.offer-popup-header h3 {
  font-weight: 900;
  font-size: 1.8rem;
}

.offer-popup-body {
  padding: 30px;
  text-align: center;
}

.offer-popup-body input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  /* font-family: 'Poppins', sans-serif; */
  outline: none;
}

.offer-popup-body input:focus {
  border-color: var(--primary);
}

/* ===== TOAST ===== */
.toast-xrt {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 350px;
}

.toast-xrt.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-xrt i {
  color: var(--success);
  font-size: 1.2rem;
}

.toast-xrt .toast-close {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  margin-left: auto;
  font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
/* @keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
} */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #004D7A 101.11%);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ===================================================================
   TEAL COLOR THEME OVERRIDES (Products & Product Detail pages)
   =================================================================== */

/* --- Page Header (Teal variant) --- */
.page-header-teal {
  background: linear-gradient(135deg, #003D6B 1.15%, #0075B0 55%, #00A5DE 100%);
  padding: 40px 50px 40px;
  position: relative;
  overflow: hidden;
}

.page-header-teal::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(1, 112, 117, 0.2) 0%, transparent 60%);
}

/* --- Teal Section Badge --- */
.section-badge-teal {
  background: rgba(1, 112, 117, 0.15);
  color: #00A5DE;
  border: 1px solid rgba(1, 112, 117, 0.25);
}

/* --- Teal Buttons --- */
.btn-teal-xrt {
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #004D7A 101.11%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 117, 176, 0.4);
}

.btn-teal-xrt:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 107, 112, 0.5);
  color: #fff;
}

.btn-dark-teal-xrt {
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0D0D0D;
  color: #fff;
  border: 1px solid rgba(1, 112, 117, 0.3);
}

.btn-dark-teal-xrt:hover {
  background: #003D6B;
  color: #00A5DE;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 107, 112, 0.3);
}

/* --- Product Card Teal Overrides --- */
.product-card:hover {
  border-color: rgba(1, 112, 117, 0.3);
}

.product-action-btn:hover {
  background: #0075B0;
  color: #fff;
}

.btn-cart-xrt {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
}

.btn-cart-xrt:hover {
  box-shadow: 0 4px 15px rgba(0, 107, 112, 0.4);
}

.badge-sale {
  background: #0075B0;
}

.badge-new {
  background: #00A5DE;
}

.product-price-discount {
  color: #00A5DE;
}

/* --- Filter Sidebar Teal --- */
.filter-group .form-check-input:checked {
  background-color: #0075B0;
  border-color: #0075B0;
}

.price-range-slider input[type="range"] {
  accent-color: #0075B0;
}

.sort-select:focus {
  border-color: #0075B0;
}

/* --- Weight Selector Teal --- */
.weight-option:hover,
.weight-option.active {
  border-color: #0075B0;
  background: rgba(1, 112, 117, 0.08);
  color: #0075B0;
}

/* --- Gallery Thumb Teal --- */
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: #0075B0;
}

/* --- Tabs Teal --- */
.tabs-xrt .nav-link::after {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
}

.tabs-xrt .nav-link.active {
  color: #0075B0;
}

/* --- Feature Item Check Icon Teal --- */
.feature-item i {
  color: #0075B0;
}

/* --- Cart Badge Teal --- */
.cart-badge {
  background: #0075B0;
}

/* --- Back to Top Teal --- */
.back-to-top {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #004D7A 101.11%);
  box-shadow: 0 4px 20px rgba(0, 107, 112, 0.4);
}

/* --- Section Title Highlight Teal --- */
.section-title .highlight {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Badge Teal Override --- */
.section-badge {
  background: rgba(1, 112, 117, 0.1);
  color: #00A5DE;
}

/* --- Review Stars --- */
.review-stars {
  color: #FFD700;
}

/* --- Button Primary XRT Teal Override --- */
.btn-primary-xrt {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
  box-shadow: 0 4px 20px rgba(0, 107, 112, 0.4);
}

.btn-primary-xrt:hover {
  box-shadow: 0 8px 30px rgba(0, 107, 112, 0.5);
}

/* --- Category Card Teal --- */
.category-card::before {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
}

.category-card:hover {
  border-color: rgba(1, 112, 117, 0.2);
}

/* --- Navbar XRT Link Teal --- */
.nav-link-xrt:hover::after,
.nav-link-xrt.active::after {
  background: #00A5DE;
}

.nav-link-xrt:hover {
  color: #00A5DE !important;
}

/* --- PM Title Line Teal --- */
.pm-title-line {
  background: #0075B0;
}

/* --- PM Footer Heading Line Teal --- */
.pm-footer-heading::after {
  background: #0075B0;
}

/* --- PM Footer Social Hover Teal --- */
.pm-footer-social a:hover {
  background: #0075B0;
  border-color: #0075B0;
}

/* --- PM Footer Link Hover Teal --- */
.pm-footer-links a:hover {
  color: #00A5DE;
}

/* --- PM About Readmore Teal --- */
.pm-about-readmore {
  color: #00A5DE;
  border-bottom-color: #00A5DE;
}

.pm-about-readmore:hover {
  color: #00A5DE;
}

/* --- PM About Badge Icon Teal --- */
.pm-about-badge i {
  color: #0075B0;
}

/* --- Gradient Primary Override --- */
.offer-popup-header {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
}

/* --- Scrollbar Teal --- */
::-webkit-scrollbar-thumb {
  background: #0075B0;
}

::-webkit-scrollbar-thumb:hover {
  background: #00A5DE;
}

/* --- Toast Teal --- */
.toast-xrt i {
  color: #00A5DE;
}

/* --- Wishlist Heart Color Teal --- */
.pm-btn-icon.wishlist-btn i.bi-heart-fill {
  color: #0075B0 !important;
}

/* --- Nav Icon Hover Teal --- */
.nav-icon-btn:hover {
  color: #00A5DE;
}

/* --- Why Card Teal --- */
.why-icon {
  background: rgba(1, 112, 117, 0.15);
  color: #00A5DE;
}

.why-card:hover .why-icon {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
  box-shadow: 0 0 30px rgba(0, 107, 112, 0.3);
}

.why-card:hover {
  border-color: rgba(1, 112, 117, 0.3);
}

/* --- Product Card Hover Shadow Teal --- */
.product-card:hover,
.pm-product-card:hover {
  box-shadow: 0 8px 40px rgba(0, 107, 112, 0.15);
}

/* --- Testimonial Avatar Teal --- */
.testimonial-avatar,
.pm-testimonial-avatar {
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  padding: 8px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: var(--primary-light);
}

.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== HERO SLIDER ===== */
/* ===== NAVBAR ===== */
.custom-navbar {
  padding: 14px 50px;
}

.nav-link {
  color: #bbb !important;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px !important;
}

.nav-link.active {
  color: #00A5DE !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #00A5DE;
  border-radius: 2px;
}

.nav-link:hover {
  color: #00A5DE !important;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 16px;
}

.nav-icon-link {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.nav-icon-link:hover {
  color: #00A5DE;
}

.nav-wishlist-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-shop-now {
  color: #fff;
  display: flex;
  width: 174px;
  height: 50px;
  padding: 4px 50px 6px 50px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 1000px;
  border: 1px solid #0075B0;

  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #004D7A 101.11%);

  box-shadow:
    0 4px 10px rgba(0, 117, 176, 0.4),
    0 8px 20px rgba(0, 165, 222, 0.3);

  transition: all 0.3s ease;
}

.btn-shop-now:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 15px rgba(0, 117, 176, 0.5),
    0 12px 25px rgba(0, 165, 222, 0.4);
}

/* ===== HERO WRAPPER (dark BG container) ===== */
.hero-dark-wrapper {
  background: linear-gradient(135deg, #003D6B 1.15%, #0075B0 55%, #00A5DE 100%);
  position: relative;
  /* padding-bottom: 50px; */
  /* space for features bar overlap */
}

/* ===== HERO SECTION ===== */
.hero-section {
  display: flex;
  align-items: center;
  padding: 40px 40px 60px;
  min-height: 620px;
}

/* ===== GLASS BOX ===== */
.glass-box {
  border-radius: 30px;
  padding: 72px 85px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 420px;
  width: 607px;
}

/* Double border effect for glass box */
/* .glass-box::before {
            content: '';
            position: absolute;
            inset: 6px;
            border-radius: 25px;
            border: 1px solid rgba(0, 255, 255, 0.08);
            pointer-events: none;
        } */

.glass-box h6 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 600;
}

.glass-box h1 {
  font-size: 2.4rem;
  letter-spacing: 1px;
}

.glass-box .body-content {
  color: #888;
  font-size: 0.95rem;
}

.glass-box .btn-info {
  display: flex;
  width: 174px;
  height: 50px;
  padding: 4px 50px 6px 50px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 100px;

  /* Updated border */
  border: 1px solid #0075B0;

  /* Gradient background (same as yours) */
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #004D7A 101.11%);

  /* Updated shadow matching gradient */
  box-shadow:
    0 4px 10px rgba(0, 117, 176, 0.4),
    0 8px 20px rgba(0, 165, 222, 0.3);

  color: white;
}

/* ===== SLIDER / PRODUCT CARDS ===== */
.slider-track {
  display: flex;
  gap: 30px;
  animation: scroll 15s linear infinite;
}

.hero-product-card {
  min-width: 220px;
  height: 160px;
  background: linear-gradient(145deg, #0a2f2f, #021b1a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-15deg);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.hero-product-card img {
  width: 120px;
  transform: skewX(15deg);
}

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

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

@media (max-width: 768px) {
  .glass-box {
    padding: 25px;
    text-align: center;
  }

  .hero-product-card {
    min-width: 160px;
    height: 120px;
  }
}

/* ===== COMMON CARD ===== */
.card-svg {
  position: absolute;
  filter: drop-shadow(0 20px 40px rgba(0, 255, 255, 0.2));
  transition: all 0.6s ease-in-out;
}

/* .card-svg svg {
            width: 100%;
        } */

/* BIG CENTER */
.card-svg.big {
  width: 420px;
  left: 120px;
  z-index: 3;
}

.accent-line {
  /* position: absolute;
            top: 53px;
            left: -132px; */
  position: absolute;
  top: 22px;
  left: 67px;
}

.accent-line-right {
  position: absolute;
  top: -57px;
  right: 242px;
  opacity: 0.8;
}

.accent-line-right2 {
  position: absolute;
  top: -66px;
  right: 212px;
  opacity: 0.8;

}

.accent-line-left {
  position: absolute;
  top: 301px;
  left: 60px;
  opacity: 0.8;

}

.accent-line-left2 {
  position: absolute;
  top: 320px;
  left: 68px;
  opacity: 0.8;
}

/* RIGHT CARD */
.card-svg.right {
  width: 249px;
  right: 16px;
  top: 0px;
  z-index: 2;

}

/* LEFT CARD */
.card-svg.left {
  width: 249px;
  left: 100px;
  top: 154px;
  z-index: 2;
}

/* BACK CARD */
.card-svg.back {
  width: 150px;
  left: 72px;
  top: 227px;
  opacity: 0.4;
  z-index: 1;
}

.card-svg.back-2 {
  width: 150px;
  right: -51px;
  top: 0px;
  opacity: 0.3;
  z-index: 1;
}

/* IMAGES */
.img-main {
  position: absolute;
  width: 239px;
  top: 49%;
  left: 76%;
  transform: translate(-50%, -50%);

}

.img-small {
  position: absolute;
  width: 121px;
  top: 40%;
  left: 58%;
  transform: translate(-50%, -50%);
}

.img-small2 {
  position: absolute;
  width: 121px;
  top: 54%;
  left: 67%;
  transform: translate(-50%, -50%);
}




/* RESPONSIVE CARDS */
@media(max-width:768px) {
  .card-svg.big {
    width: 300px;
    left: 50px;
  }

  .card-svg.right {
    width: 180px;
  }

  .card-svg.left {
    width: 180px;
  }

}

@media(max-width:768px) {
  .card-svg.big {
    width: 300px;
    left: 50px;
  }

  .card-svg.right {
    width: 180px;
  }

  .card-svg.left {
    width: 180px;
  }

}

.bottom-overlay-svg {
  position: absolute;
  bottom: -32px;
  left: 470px;
  width: 140px;
  z-index: 10;
}

/* ===== FEATURES BAR ===== */
.features-bar {
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.40);
  padding: 22px 40px;
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(0, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
  position: relative;
  z-index: 20;
  margin-top: -35px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  color: #fff;
  padding: 0 15px;
}

.feature-item h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  font-size: 12px;
  color: #fff;
}

.feature-item .icon {
  font-size: 28px;
  color: #fff;
}

.feature-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .feature-item {
    justify-content: center;
    text-align: center;
    border-right: none !important;
    /* margin-bottom: 15px; */
  }

  .features-bar {
    border-radius: 20px;
    margin-top: -20px;
  }
}

.feature-curve-left {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  opacity: 0.8;
  pointer-events: none;
}

.feature-curve-right {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  opacity: 0.8;
  pointer-events: none;
}

/* ================= RESPONSIVE HERO FIX ================= */

/* Tablet & Mobile */
@media (max-width: 991px) {
  .hero-section {
    display: block;
    padding: 35px 20px 40px;
    min-height: auto;
  }

  .hero-left,
  .hero-section .col-lg-6:first-child {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .hero-section .col-lg-6:last-child {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center !important;
    text-align: center;
    margin: 0 auto;
  }

  .glass-box {
    width: 100%;
    max-width: 520px;
    height: auto;
    padding: 36px 24px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .glass-box h1 {
    font-size: 2.2rem;
  }

  .glass-box h6 {
    font-size: 1rem;
  }

  .glass-box .body-content {
    font-size: 0.95rem;
  }

  .btn-shop-now {
    width: auto;
    padding: 10px 28px;
  }

  .nav-icons {
    gap: 12px;
  }

  .features-bar {
    padding: 18px 18px;
  }
}

@media (max-width: 767px) {
  /* .glass-box {
    padding: 28px 18px;.nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background: #00A5DE;
        border-radius: 2px;
      }
  } */

  .glass-box h1 {
    font-size: 1.95rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 28px 16px 30px;
  }

  .glass-box {
    max-width: 100%;
    /* padding: 22px 16px; */
  }

  .glass-box h1 {
    font-size: 1.7rem;
  }

  .glass-box h6 {
    font-size: 0.9rem;
  }

  .glass-box .body-content {
    font-size: 0.9rem;
  }

  .btn-shop-now {
    width: 100%;
    padding: 10px 18px;
  }
}

/* ===== SERVICE BAR ===== */
.service-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-right: 1px solid var(--gray-200);
}

.service-item:last-child {
  border-right: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.service-item h6 {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}

.service-item p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
}

/* ===== PM SECTION HEADERS ===== */
.pm-section-header {
  margin-bottom: 40px;
}

.pm-section-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  display: block;
  margin-bottom: 4px;
}

.pm-section-title {
  font-size: 2rem;
  /* font-weight: 900; */
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.pm-title-line {
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.pm-section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== CATEGORY GRID ===== */
.category-grid-section {
  padding: 50px;
  background: linear-gradient(135deg, #F8FFFF, #FFFFFF);
}

.category-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.cat-grid-item {
  background: #e8e8e8;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  transition: var(--transition);
}

.cat-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cat-grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: var(--transition-slow);
}

.cat-grid-item:hover img {
  transform: perspective(1100px) rotateX(15deg) rotateY(-20deg) scale(1.12) translate3d(0, -12px, 56px);
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.48));
}

.cat-grid-large {
  grid-row: 1 / 3;
  min-height: 540px;
}

.cat-grid-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: var(--dark);
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 4px;
}

.cat-grid-label-primary {
  color: #000;
}

/* ===== TABBED PRODUCT SECTIONS ===== */
.pm-products-section {
  padding: 0 50px 20px 50px;
}

.pm-bg-light {
  background: var(--gray-100);
}

.pm-tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pm-tab-btn {
  background: none;
  border: none;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray-500);
  padding: 8px 8px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

/* ACTIVE TAB (Desktop) */
.pm-tab-btn.active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 70px;
  border-radius: 60px;
  color: #0075B0;
  font-weight: 600;
  font-size: 18px;

  background:
    url("/frontend/images/ellipse-13.webp") no-repeat 8px center,
    url("/frontend/images/ellipse-14.webp") no-repeat calc(100% - 8px) center,
    #C3EEFF;

  background-size: 24px 80%, 24px 80%, auto;
}

/* ðŸ“± Mobile View */
@media (max-width: 768px) {
  .pm-tab-btn.active {
    padding: 8px 18px;
    font-size: 14px;
    background-size: 18px 70%, 18px 70%, auto;
    background-position: 6px center, calc(100% - 6px) center, center;
  }
}

/* HOVER */
.pm-tab-btn:hover {
  color: #0075B0
}

/* PM Product Cards (Swiper) */
.pm-product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d0d2d3;
  ;
  transition: var(--transition);
  height: 100%;
}

.pm-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pm-product-img-wrap {
  background: var(--gray-100);
  text-align: center;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-product-img-wrap img {
  object-fit: contain;
  transition: var(--transition);
}

.pm-product-card:hover .pm-product-img-wrap img {
  transform: scale(1.05);
}

.pm-product-badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  width: 65px;
  padding: 2px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #0076DF;
  background: #0076DF;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.pm-product-info {
  padding: 18px;
}

.pm-product-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.pm-product-info .pm-product-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 10px;
  line-height: 1.4;
}

.pm-product-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.pm-product-price {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
}

.pm-product-price-old {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.pm-product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.pm-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  /* font-family: 'Poppins', sans-serif; */
}

.pm-btn-cart {
  flex: 1;
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #004D7A 101.11%);
  color: #fff;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

.pm-btn-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  color: #fff;
}

.pm-btn-icon {
  width: 42px;
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--gray-200);
}

.pm-btn-icon:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.pm-btn-icon:hover i {
  color: #fff !important;
}

.pm-btn-icon.wishlist-btn i.bi-heart-fill {
  color: #E63946 !important;
}

.pm-btn-icon.wishlist-btn:hover i.bi-heart {
  color: #E63946 !important;
}

.pm-swiper-next,
.pm-swiper-prev {
  color: var(--dark) !important;
  width: 40px !important;
  height: 40px !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-sm) !important;
}

.pm-swiper-next::after,
.pm-swiper-prev::after {
  font-size: 14px !important;
}

/* ===== TRUST / STATS SECTION ===== */
.pm-trust-section {
  /* background: var(--gradient-primary); */
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #003D6B 101.11%);
  padding: 50px 0;
  color: #fff;
}

.pm-trust-item {
  padding: 20px;
}

.pm-trust-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pm-trust-number {
  /* font-family: 'Poppins', sans-serif; */
  font-size: 2.5rem;
  font-weight: 900;
}

.pm-trust-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.pm-testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 70px 50px;
  background:
    radial-gradient(circle at 84% 12%, rgba(2, 170, 177, 0.12), transparent 32%),
    linear-gradient(180deg, #edf3f3 0%, #e6f0f0 100%);
}

.pm-testimonials-section .pm-section-title {
  color: #0b4e56;
  letter-spacing: 0.02em;
}

.pm-testimonials-section .pm-section-sub {
  color: #0075B0;
  font-weight: 600;
}

/* .pm-testimonials-section .pm-title-line {
  background: linear-gradient(90deg, #0e7a82 0%, #09b2ba 100%);
} */

.pm-testimonial-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 126, 133, 0.2);
  border-radius: 18px;
  padding: 28px 24px;
  /* box-shadow: 0 14px 30px rgba(5, 71, 75, 0.09); */
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pm-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 148, 142, 0.45);
  box-shadow: 0 18px 36px rgba(3, 88, 92, 0.15);
}

.pm-testimonial-stars {
  color: #f7b93e;
  margin-bottom: 16px;
  font-size: 15px;
}

.pm-testimonial-text {
  color: #2b4f52;
  font-style: normal;
  font-size: 0.98rem;
  margin-bottom: 22px;
  line-height: 1.72;
  min-height: 130px;
}

.pm-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pm-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007980 0%, #00A5DE 58%, #003D6B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.pm-testimonial-author h6 {
  color: #0a4146;
  font-weight: 700;
  margin: 0;
  font-size: 0.95rem;
}

.pm-testimonial-author span {
  color: #5a787a;
  font-size: 0.82rem;
}

.pm-testimonial-slider {
  overflow: hidden;
  width: 100vw;
  margin: 0 auto;
  position: relative;
}

.pm-testimonial-slider-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* .pm-testimonial-slider::before,
.pm-testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(26px, 7vw, 120px);
  pointer-events: none;
  z-index: 2;
}

.pm-testimonial-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(230, 240, 240, 0.98), rgba(230, 240, 240, 0));
} */

.pm-testimonial-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(230, 240, 240, 0.98), rgba(230, 240, 240, 0));
}

.pm-testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  padding: 12px 22px 8px;
  animation: pmTestimonialMarquee 42s linear infinite;
}

.pm-testimonial-slider:hover .pm-testimonial-track {
  animation-play-state: paused;
}

.pm-testimonial-item {
  flex: 0 0 clamp(280px, 28vw, 390px);
  max-width: clamp(280px, 28vw, 390px);
}

@keyframes pmTestimonialMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 768px) {
  .pm-testimonials-section {
    padding: 52px 16px;
  }

  .pm-testimonial-track {
    gap: 16px;
    padding: 10px 16px 6px;
    animation-duration: 32s;
  }

  .pm-testimonial-item {
    flex: 0 0 82vw;
    max-width: 82vw;
  }

  .pm-testimonial-text {
    min-height: auto;
  }
}

/* ===== PRESS / FEATURED ON ===== */
.pm-featured-on-section {
  position: relative;
  overflow: hidden;
  padding: 70px 50px;
  background:
    radial-gradient(circle at 10% 0%, rgba(4, 151, 157, 0.14), transparent 35%),
    linear-gradient(180deg, #e9f1f1 0%, #f3f8f8 100%);
}

.pm-featured-on-section .pm-section-sub {
  color: #2d8f96;
  font-weight: 600;
}

.pm-featured-on-section .pm-section-title {
  text-align: center;
  color: #0b4e56;
}

.pm-featured-on-section .pm-title-line {
  background: linear-gradient(90deg, #0e7a82 0%, #09b2ba 100%);
}

.pm-press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.pm-press-logo {
  min-width: 210px;
  padding: 14px 22px;
  border: 1px solid rgba(9, 120, 126, 0.23);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(4, 90, 95, 0.08);
  opacity: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pm-press-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(3, 136, 141, 0.48);
  box-shadow: 0 12px 24px rgba(5, 88, 93, 0.16);
}

.pm-press-logo .press-brand {
  display: block;
  text-align: center;
  line-height: 1;
}

.press-brand-et {
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #243a46;
}

.press-brand-ht {
  font-weight: 700;
  font-size: 1.08rem;
  color: #1a5276;
}

.press-brand-midday {
  font-weight: 900;
  font-size: 1.2rem;
  color: #d63846;
}

.press-brand-outlook {
  font-weight: 700;
  font-style: italic;
  font-size: 1.18rem;
  color: #0d47a1;
}

.press-brand-bc {
  font-weight: 700;
  font-size: 1.06rem;
  color: #26353f;
}

@media (max-width: 768px) {
  .pm-featured-on-section {
    padding: 52px 16px;
  }

  .pm-press-logos {
    gap: 12px;
  }

  .pm-press-logo {
    min-width: 165px;
    padding: 12px 14px;
  }
}

/* ===== ABOUT SECTION ===== */
/* .pm-about-section {
  padding: 80px 0;
  background: linear-gradient(rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.92)),
    url('../images/hero-bg.png') center / cover;
  color: #fff;
}

.pm-about-section .pm-section-title {
  color: #fff;
}

.pm-about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pm-about-readmore {
  color: var(--primary-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--primary-light);
  padding-bottom: 2px;
}

.pm-about-readmore:hover {
  color: var(--primary);
}

.pm-about-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.pm-about-badge i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.pm-about-badge h3 {
  font-weight: 600;
  margin-bottom: 6px;
}

.pm-about-badge p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin: 0;
} */

/* ===== NEWSLETTER ===== */
.pm-newsletter-section {
  padding: 60px 0;
  background: var(--gray-100);
}

.pm-newsletter-desc {
  color: var(--gray-500);
  max-width: 500px;
  margin: 16px auto 24px;
}

.pm-newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 2px solid var(--gray-300);
}

.pm-newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-size: 0.95rem;
  /* font-family: 'Poppins', sans-serif; */
  outline: none;
  color: var(--dark);
}

.pm-newsletter-form button {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  padding: 14px 16px;
}

.pm-newsletter-form button:hover {
  transform: translateX(4px);
}

/* ===== PM FOOTER ===== */
.pm-footer {
  background: var(--dark);
  color: var(--gray-400);
  padding-top: 70px;
}

.pm-footer-brand {
  /* font-family: 'Poppins', sans-serif; */
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pm-footer-brand span {
  color: var(--primary);
}

.pm-footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.pm-footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.pm-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.pm-footer-links {
  padding: 0;
}

.pm-footer-links li {
  margin-bottom: 8px;
}

.pm-footer-links a {
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: var(--transition);
}

.pm-footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.pm-footer-social {
  display: flex;
  gap: 10px;
}

.pm-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.pm-footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pm-payment-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
}

.pm-footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.pm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

/* ===== SOCIAL SIDEBAR ===== */
.pm-social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition);
}

.pm-social-icon:hover {
  opacity: 0.85;
  transform: scale(1.1);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

  .hero-title,
  .hero-slide-title {
    font-size: 2.4rem;
  }

  .hero-product-img,
  .hero-slide-img {
    max-height: 380px !important;
    /* margin-top: 30px; */
  }

  .section-title,
  .pm-section-title {
    font-size: 1.7rem;
  }

  .offer-discount {
    font-size: 3.5rem;
  }

  .category-asymmetric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cat-grid-large {
    grid-row: auto;
    min-height: 300px;
  }

  .pm-section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-bar .d-flex:last-child {
    display: none !important;
  }

  .pm-social-sidebar {
    display: none;
  }
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }

  /* .hero-slider-section {
    margin-top: 60px;
  } */

  .hero-slide-title {
    font-size: 1.8rem;
  }

  .hero-slide-img {
    max-height: 200px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-product-img {
    max-height: 250px;
  }

  .section-title,
  .pm-section-title {
    font-size: 1.5rem;
  }

  .offer-discount {
    font-size: 2.8rem;
  }

  .product-detail-info .product-detail-title {
    font-size: 1.5rem;
  }

  .gallery-main {
    padding: 20px;
  }

  .gallery-main img {
    max-height: 280px;
  }

  .cart-table {
    font-size: 0.85rem;
  }

  .cart-item-img {
    width: 60px;
    height: 60px;
  }

  .category-asymmetric-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid-large {
    min-height: 280px;
  }

  .cat-grid-item {
    min-height: 200px;
  }

  .pm-press-logos {
    gap: 20px;
  }

  .pm-press-logo {
    border-right: none;
  }

  .service-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-slide-title {
    font-size: 1.5rem;
  }

  .btn-xrt {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .newsletter-input-wrap {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .newsletter-input-wrap button {
    border-radius: 0;
  }

  .pm-trust-number {
    font-size: 1.8rem;
  }
}

/* ===== WISHLIST SIDEBAR ===== */
.wishlist-sidebar {
  width: 35% !important;
  z-index: 9999;
}

@media (max-width: 768px) {
  .wishlist-sidebar {
    width: 80% !important;
  }
}


/* Banner Section
====================
==================== */
.banner {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F8FFFF, #FFFFFF);
  overflow: hidden;
}

.banner1 {
  position: absolute;
  left: 252px;
  top: 24px;
}

.banner2 {
  position: absolute;
  right: 131px;
  bottom: 21px;
}

/* Main Heading */
.banner h1 {
  color: #015458;
  text-align: center;
  font-family: "Sprintura Demo" !important;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Subheading */
.banner p {
  color: rgba(124, 203, 206, 0.20);
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #00A5AC;
  font-family: "Sprintura Demo";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Tablet */
@media (max-width: 992px) {
  .banner {
    padding: 60px 20px;
  }

  .banner h1 {
    font-size: 48px;
  }

  .banner p {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .banner {
    padding: 40px 15px;
  }

  .banner h1 {
    font-size: 32px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner::before,
  .banner::after {
    width: 120px;
    height: 50px;
  }
}


/* ===================================================================
   COMPREHENSIVE RESPONSIVE STYLES
   =================================================================== */

/* ===== LARGE TABLETS / SMALL DESKTOPS (max-width: 1199px) ===== */
/* @media (max-width: 1199px) {
  .card-svg.big {
    width: 360px;
    left: 80px;
  }

  .card-svg.right {
    width: 200px;
    right: 60px;
  }

  .card-svg.left {
    width: 200px;
    left: 60px;
  }

  .glass-box {
    width: 520px;
   
  }

  .glass-box h1 {
    font-size: 2rem;
  }

  .features-bar {
    padding: 18px 30px;
  }

  .pm-about-section {
    padding: 60px 0;
  }
} */

/* ===== TABLETS (max-width: 991px) ===== */
@media (max-width: 991px) {

  /* --- Top Bar --- */
  .top-bar {
    font-size: 0.72rem;
    padding: 6px 0;
  }

  /* --- Navbar --- */
  .custom-navbar {
    padding: 14px;
  }

  .navbar-collapse {
    background: rgba(13, 13, 13, 0.98);
    margin-top: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    font-size: 14px;
  }

  /* --- Banner Section --- */
  .banner {
    padding: 50px 15px;
  }

  .banner1 {
    left: 50px;
    top: 10px;
    width: 140px;
  }

  .banner2 {
    right: 50px;
    bottom: 10px;
    width: 140px;
  }

  .banner h1 {
    font-size: 56px;
  }

  .banner p {
    font-size: 26px;
  }

  /* --- Features Bar --- */
  .features-bar {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .features-bar .row {
    gap: 10px 0;
  }

  .feature-item {
    padding: 8px 10px;
  }

  .feature-item h6 {
    font-size: 12px;
  }

  .feature-item p {
    font-size: 11px;
  }

  .feature-item .icon {
    font-size: 22px;
  }

  .feature-curve-left,
  .feature-curve-right {
    display: none;
  }

  /* --- Category Grid --- */
  .category-grid-section {
    padding: 30px 0;
  }

  .cat-grid-item {
    min-height: 200px;
  }

  .cat-grid-label {
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    font-size: 0.72rem;
  }

  /* --- Product Sections --- */
  .pm-products-section {
    padding: 30px 0;
  }

  .pm-tab-nav {
    gap: 4px;
  }

  .pm-tab-btn {
    font-size: 0.82rem;
    padding: 6px 14px;
  }

  /* --- Trust / Stats --- */
  .pm-trust-section {
    padding: 35px 0;
  }

  .pm-trust-number {
    font-size: 2rem;
  }

  .pm-trust-icon {
    font-size: 1.6rem;
  }

  /* --- Testimonials --- */
  .pm-testimonials-section {
    padding: 40px 0;
  }

  .pm-testimonial-card {
    padding: 22px;
  }

  .pm-testimonial-text {
    font-size: 0.88rem;
  }

  /* --- Featured On / Press --- */
  .pm-featured-on-section {
    padding: 25px 0;
  }

  .pm-press-logos {
    gap: 20px;
  }

  .pm-press-logo {
    padding: 8px 16px;
  }

  /* --- About --- */
  /* .pm-about-section {
    padding: 50px 0;
  }

  .pm-about-badge {
    margin-top: 30px;
    padding: 30px;
  } */

  /* --- Newsletter --- */
  .pm-newsletter-section {
    padding: 40px 0;
  }

  .pm-newsletter-form {
    max-width: 420px;
  }

  /* --- Footer --- */
  .pm-footer {
    padding-top: 50px;
  }

  .pm-footer .row>div {
    margin-bottom: 10px;
  }

  .pm-footer-bottom {
    margin-top: 30px;
  }
}

/* ===== SMALL TABLETS / LARGE MOBILE (max-width: 767px) ===== */
@media (max-width: 767px) {

  /* --- Banner --- */
  .banner {
    padding: 40px 15px;
  }

  .banner1 {
    left: 20px;
    top: 8px;
    width: 100px;
  }

  .banner2 {
    right: 20px;
    bottom: 8px;
    width: 100px;
  }

  .banner h1 {
    font-size: 40px;
  }

  .banner p {
    font-size: 20px;
  }

  /* --- Features Bar --- */
  .features-bar {
    border-radius: 14px;
    margin-top: -15px;
  }

  .features-bar .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .feature-item:not(:last-child) {
    border-right: none;
  }

  .feature-item {
    justify-content: flex-start;
    text-align: left;
    padding: 8px 8px;
  }

  /* --- Category --- */
  .category-grid-section {
    padding: 25px 0;
  }

  .pm-section-header {
    margin-bottom: 24px;
  }

  .pm-section-title {
    font-size: 1.4rem;
  }

  .pm-section-sub {
    font-size: 0.82rem;
  }

  /* --- Product Tabs --- */
  .pm-section-header-row {
    gap: 10px;
  }

  .pm-tab-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .pm-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .pm-tab-btn {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  /* --- Trust Stats --- */
  .pm-trust-section {
    padding: 30px 0;
  }

  .pm-trust-item {
    padding: 14px 10px;
  }

  .pm-trust-number {
    font-size: 1.8rem;
  }

  .pm-trust-item p {
    font-size: 0.82rem;
  }

  /* --- Testimonials --- */
  .pm-testimonials-section {
    padding: 30px 0;
  }

  .pm-testimonial-card {
    padding: 20px;
    margin-bottom: 12px;
  }

  .pm-testimonial-text {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .pm-testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .pm-testimonial-author h6 {
    font-size: 0.82rem;
  }

  .pm-testimonial-author span {
    font-size: 0.72rem;
  }

  /* --- Press Logos --- */
  .pm-press-logos {
    gap: 12px;
  }

  .pm-press-logo {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  /* --- About --- */
  /* .pm-about-section {
    padding: 40px 0;
  }

  .pm-about-text {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .pm-about-badge {
    padding: 24px;
    margin-top: 24px;
  }

  .pm-about-badge i {
    font-size: 2.2rem;
  }

  .pm-about-badge h3 {
    font-size: 1.2rem;
  } */

  /* --- Newsletter --- */
  .pm-newsletter-section {
    padding: 35px 0;
  }

  .pm-newsletter-desc {
    font-size: 0.88rem;
    margin: 12px auto 18px;
  }

  .pm-newsletter-form {
    max-width: 100%;
  }

  .pm-newsletter-form input {
    font-size: 0.88rem;
    padding: 12px 0;
  }

  /* --- Footer --- */
  .pm-footer {
    padding-top: 40px;
  }

  .pm-footer-brand {
    font-size: 1.5rem;
  }

  .pm-footer-about {
    font-size: 0.82rem;
  }

  .pm-footer-heading {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .pm-footer-links a {
    font-size: 0.82rem;
  }

  .pm-footer-social a {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .pm-payment-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .pm-footer-contact p {
    font-size: 0.82rem;
  }

  .pm-footer-bottom {
    margin-top: 25px;
    padding: 14px 0;
    font-size: 0.78rem;
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-12%);
    width: 42%;
    height: 2px;
    background: #00A5DE;
    border-radius: 2px;
  }
}

/* ===== MOBILE (max-width: 576px) ===== */
@media (max-width: 576px) {

  /* --- Banner --- */
  .banner {
    padding: 30px 10px;
  }

  .banner1,
  .banner2 {
    display: none;
  }

  .banner h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .banner p {
    font-size: 14px;
    -webkit-text-stroke-width: 0.5px;
  }

  /* --- Hero Typography --- */
  .glass-box h6 {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
  }

  .glass-box .btn-info {
    font-size: 13px;
    padding: 8px 24px;
  }

  /* --- Features Bar --- */
  .features-bar {
    border-radius: 12px;
    padding: 12px 10px;
    /* margin-left: 10px; */
    /* margin-right: 10px; */
  }

  .features-bar .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .feature-item {
    padding: 6px 8px;
    gap: 8px;
  }

  .feature-item .icon {
    font-size: 20px;
  }

  .feature-item h6 {
    font-size: 11px;
  }

  .feature-item p {
    font-size: 10px;
  }

  /* --- Category Grid --- */
  .category-grid-section {
    padding: 20px 0;
  }

  .cat-grid-item {
    min-height: 170px;
  }

  .cat-grid-label {
    top: 8px;
    right: 8px;
    padding: 5px 10px;
    font-size: 0.65rem;
  }

  /* --- Section Headers --- */
  .pm-section-header {
    margin-bottom: 18px;
  }

  .pm-section-title {
    font-size: 1.25rem;
  }

  .pm-section-sub {
    font-size: 0.78rem;
  }

  .pm-title-line {
    width: 36px;
    height: 2px;
  }

  /* --- Product Sections --- */
  .pm-products-section {
    padding: 22px 0;
  }

  .pm-product-info {
    padding: 12px;
  }

  .pm-product-info h5 {
    font-size: 0.85rem;
  }

  .pm-product-info .pm-product-desc {
    font-size: 0.72rem;
  }

  .pm-product-price {
    font-size: 0.95rem;
  }

  .pm-product-price-old {
    font-size: 0.75rem;
  }

  .pm-product-actions {
    margin-top: 10px;
    gap: 6px;
  }

  .pm-action-btn {
    height: 36px;
    font-size: 0.78rem;
  }

  .pm-btn-cart {
    font-size: 0.78rem;
  }

  .pm-swiper-next,
  .pm-swiper-prev {
    width: 32px !important;
    height: 32px !important;
  }

  .pm-swiper-next::after,
  .pm-swiper-prev::after {
    font-size: 11px !important;
  }

  /* --- Trust Stats --- */
  .pm-trust-section {
    padding: 24px 0;
  }

  .pm-trust-item {
    padding: 10px 8px;
  }

  .pm-trust-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .pm-trust-number {
    font-size: 1.5rem;
  }

  .pm-trust-item p {
    font-size: 0.75rem;
  }

  /* --- Testimonials --- */
  .pm-testimonials-section {
    padding: 24px 0;
  }

  .pm-testimonial-card {
    padding: 16px;
  }

  .pm-testimonial-stars i {
    font-size: 0.82rem;
  }

  .pm-testimonial-text {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  /* --- Featured On --- */
  .pm-featured-on-section {
    padding: 20px 0;
  }

  .pm-press-logos {
    gap: 8px;
  }

  .pm-press-logo span {
    font-size: 0.85rem !important;
  }

  /* --- About Section --- */
  /* .pm-about-section {
    padding: 30px 0;
  }

  .pm-about-section .pm-section-title {
    font-size: 1.3rem;
  }

  .pm-about-text {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .pm-about-readmore {
    font-size: 0.85rem;
  }

  .pm-about-badge {
    padding: 20px;
    margin-top: 20px;
  }

  .pm-about-badge i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .pm-about-badge h3 {
    font-size: 1.05rem;
  }

  .pm-about-badge p {
    font-size: 0.78rem;
  } */

  /* --- Newsletter --- */
  .pm-newsletter-section {
    padding: 24px 0;
  }

  .pm-newsletter-section .pm-section-title {
    font-size: 1.2rem;
  }

  .pm-newsletter-desc {
    font-size: 0.82rem;
    margin: 8px auto 14px;
  }

  .pm-newsletter-form input {
    font-size: 0.82rem;
    padding: 10px 0;
  }

  .pm-newsletter-form button {
    font-size: 1.1rem;
    padding: 10px 12px;
  }

  /* --- Footer --- */
  .pm-footer {
    padding-top: 30px;
  }

  .pm-footer .row {
    gap: 0;
  }

  .pm-footer .row>div {
    margin-bottom: 20px;
  }

  .pm-footer-brand {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .pm-footer-about {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .pm-footer-heading {
    font-size: 0.82rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .pm-footer-links li {
    margin-bottom: 6px;
  }

  .pm-footer-links a {
    font-size: 0.78rem;
  }

  .pm-footer-social {
    gap: 8px;
  }

  .pm-footer-social a {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }

  .pm-payment-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .pm-footer-contact p {
    font-size: 0.78rem;
    margin-bottom: 4px;
  }

  .pm-footer-bottom {
    margin-top: 18px;
    padding: 12px 0;
    font-size: 0.72rem;
  }

  /* --- Back to Top --- */
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
  }

  /* --- Offer Popup --- */
  .offer-popup {
    max-width: 320px;
    width: 92%;
  }

  .offer-popup-header {
    padding: 28px 20px;
  }

  .offer-popup-header h3 {
    font-size: 1.4rem;
  }

  .offer-popup-body {
    padding: 20px;
  }

  .offer-popup-body input {
    padding: 11px 14px;
    font-size: 0.85rem;
  }

  /* --- Toast --- */
  .toast-xrt {
    right: 15px;
    bottom: 15px;
    max-width: 280px;
    padding: 12px 16px;
    font-size: 0.82rem;
  }

  /* --- Wishlist Sidebar --- */
  .wishlist-sidebar {
    width: 90% !important;
  }
}

/* ===== EXTRA SMALL MOBILE (max-width: 400px) ===== */
@media (max-width: 400px) {
  .glass-box {
    /* padding: 18px 14px; */
  }

  .glass-box h1 {
    font-size: 1.4rem;
  }

  .glass-box h6 {
    font-size: 0.78rem;
  }

  .glass-box .body-content {
    font-size: 0.82rem;
  }

  .glass-box .btn-info {
    font-size: 12px;
    padding: 7px 20px;
  }

  .banner h1 {
    font-size: 24px;
  }

  .banner p {
    font-size: 12px;
  }

  .pm-section-title {
    font-size: 1.1rem;
  }

  .pm-trust-number {
    font-size: 1.3rem;
  }

  .pm-testimonial-card {
    padding: 14px;
  }

  .pm-about-badge {
    padding: 16px;
  }

  .pm-footer-brand {
    font-size: 1.2rem;
  }
}

/* ===== FEATURES BAR ===== */
.features-bar {
  position: relative;
  padding: 0;
}

.features-bar-inner {
  display: flex;
  align-items: center;
  /* background: var(--dark); */
  border-radius: var(--radius-lg);
  padding: 10px 20px;
  position: relative;
  overflow: hidden;

}

.feature-curve-left,
.feature-curve-right {
  flex-shrink: 0;
}

.features-scroll-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.features-scroll-wrapper .row {
  flex-wrap: nowrap;
}

.feature-item {
  padding: 10px 58px;
}

.feature-item .icon {
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
}

.feature-item h6 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
  white-space: nowrap;
}

.feature-item p {
  color: #fff;
  font-size: 0.75rem;
  margin-bottom: 0;
  white-space: nowrap;
}

/* ===== FEATURES BAR - MOBILE AUTO-SCROLL ===== */
@media (max-width: 767.98px) {
  .features-bar {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .features-bar-inner {
    padding: 0 8px;
    margin-top: 10px;
  }

  .feature-curve-left,
  .feature-curve-right {
    display: none;
  }

  .features-scroll-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .features-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .features-scroll-wrapper .row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
  }

  .features-scroll-wrapper .feature-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    justify-content: center;
    padding: 8px 16px;
    min-height: 74px;
  }

  /* Pagination dots */
  .features-bar-inner::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
  }
}


/* SECTION BASE */
.about-section {
  background: linear-gradient(135deg, #003D6B 1.15%, #0075B0 55%, #00A5DE 100%);
  padding: clamp(28px, 4vw, 20px);
  color: #fff;
  overflow: hidden;
}

/* .container {
  max-width: 1400px;
  margin: auto;
} */

/* GRID */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: start;
}

/* LEFT */
.about-tag {
  color: #E4F2F2;
  font-size: 26px;
  font-style: normal;
  font-weight: 300 !important;
  line-height: 160%;
  /* 41.6px */
}

.about-tag span {
  color: #E4F2F2;
  font-size: 26px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 160%;
}

.about-svg {
  position: relative;
  left: 183px;
  bottom: 41px;
}

.about-left h2 {
  color: #E4F2F2;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 39px */
}

.about-left h3 {
  color: #00F4FF;
  font-size: 30px !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 160%;
  /* 48px */
}

.about-image {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

/* MAIN IMAGE */
.main-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  /* above shape */
}

.about1-glow {
  position: absolute;
  top: -95px;
  right: 96px;
  width: 420px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
}

.about2-glow {
  position: absolute;
  bottom: -95px;
  left: -103px;
  width: 420px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
}



/* SHAPE IMAGE */
.img-shape {
  position: absolute;
  top: 2%;
  left: 2%;
  width: clamp(120px, 35%, 220px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.img-shape1 {
  position: absolute;
  bottom: 2%;
  right: 2%;
  width: clamp(120px, 35%, 220px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* RIGHT */
.about-gallery {
  display: flex;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.about-gallery img {
  width: clamp(92px, 12vw, 137px);
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
}

.about-desc {
  color: #E4F2F2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 70px;
  margin-top: 50px;
}

/* CARD */
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 20px 10px;

  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

/* MAIN ICON ONLY */
.stat-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
  z-index: 99;
}

.stats-glow {
  position: absolute;
  top: -111px;
  right: 1px;
  width: 121px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;

}

/* NUMBER */
.stat h4 {
  color: #E4F2F2;
  font-size: 22px;
  font-weight: 500;
  margin: 5px 0;
}

/* SPECIAL NUMBER WITH SHAPE */
.stat-number {
  position: relative;
  display: inline-block;
}

/* VECTOR SHAPE */
.icon-shape {
  position: absolute;
  top: -12px;
  left: -18px;

  width: 65px;
  height: auto;

  z-index: 0;
  /* FIXED (not -1) */
}

/* TEXT ABOVE SHAPE */
.stat-number {
  z-index: 1;
}

/* DESCRIPTION */
.stat p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

/* TRUST BAR SECTION */
.pm-trust-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #003D6B 100%);
  padding: 60px 0;
}

.pm-trust-item {
  padding: 30px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.pm-trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(6, 208, 218, 0.25);
}

.pm-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(6, 208, 218, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: #06d0da;
  transition: all 0.3s ease;
}

.pm-trust-item:hover .pm-trust-icon {
  background: linear-gradient(135deg, #0075B0, #00A5DE);
  color: #fff;
  box-shadow: 0 0 20px rgba(6, 208, 218, 0.3);
}

.pm-trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.pm-trust-item p {
  color: #adb5bd;
  font-size: 0.85rem;
  margin: 0;
}

/* CTA */
/* CTA LAYOUT */
.about-cta {
  --video-thumb-size: 71px;
  --video-overlap: 24px;
  --cta-block-width: calc((var(--video-thumb-size) * 3) - (var(--video-overlap) * 2));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 70px;
  flex-wrap: wrap;
}

/* LEFT VIDEO CIRCLES */
.video-list {
  display: inline-flex;
  align-items: center;
  width: var(--cta-block-width);
  min-height: var(--video-thumb-size);
  /* padding: 8px 12px; */
  /* border: 1px dashed rgba(6, 208, 218, 0.65); */
  border-radius: 2px;
}

.video-circle {
  width: var(--video-thumb-size);
  height: var(--video-thumb-size);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  /* overflow: hidden; */
  cursor: pointer;
  position: relative;
  /* border: 2px solid rgba(255, 255, 255, 0.9); */
  /* background: transparent; */
  /* box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28); */
  transition: transform 0.25s ease;
}

.video-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-circle+.video-circle {
  margin-left: calc(-1 * var(--video-overlap));
}

.video-circle:nth-child(1) {
  z-index: 1;
}

.video-circle:nth-child(2) {
  z-index: 2;
}

.video-circle:nth-child(3) {
  z-index: 3;
}

.video-circle:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-cta {
    --video-thumb-size: 92px;
    --video-overlap: 16px;
  }

  .video-list {
    padding: 6px 8px;
  }

  .video-circle {
    width: var(--video-thumb-size);
    height: var(--video-thumb-size);
  }

  .video-circle+.video-circle {
    margin-left: calc(-1 * var(--video-overlap));
  }
}

/* RIGHT CTA */
.about-cta .watch-video {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 8px;
  /* width: var(--cta-block-width); */
  min-height: var(--video-thumb-size);
  justify-content: center;
  cursor: pointer;
  text-align: center;
}

.about-cta .watch-video>span {
  /* color: #E4F2F2; */
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-cta .play-btn {
  width: clamp(52px, calc(var(--video-thumb-size) - 10px), 62px);
  height: clamp(52px, calc(var(--video-thumb-size) - 10px), 62px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0;
}

.about-cta .play-btn>span {
  display: block;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1;
  transform: translateX(1px);
}



/* MODAL */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.video-modal.active {
  display: flex;
}

.video-content {
  position: relative;
  width: 90%;
  max-width: 800px;
}

.video-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* ========================= */
/* ðŸ“± RESPONSIVE */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .about-section {
    padding: 32px 20px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-gallery {
    justify-content: flex-start;
  }

  .about-left h2 {
    font-size: 26px;
  }

  .about-left h3 {
    font-size: 24px !important;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .about-cta {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-section {
    padding: 24px 14px;
  }

  .about-tag,
  .about-tag span {
    font-size: 18px;
  }

  .about-left h2 {
    font-size: 22px;
  }

  .about-left h3 {
    font-size: 20px !important;
  }

  .about-gallery {
    flex-wrap: wrap;
    gap: 10px;
    overflow: visible;
  }

  .about-gallery img {
    width: calc(50% - 8px);
    height: 120px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
    gap: 10px;
  }

  .about-cta {
    justify-content: center;
    gap: 14px;
    --video-thumb-size: 76px;
    --video-overlap: 16px;
  }

  .video-circle {
    width: var(--video-thumb-size);
    height: var(--video-thumb-size);
  }

  .about-cta .watch-video>span {
    font-size: 16px;
  }

  .about-cta .play-btn {
    width: 56px;
    height: 56px;
  }

  .about-cta .play-btn>span {
    font-size: 16px;
  }

  .video-content iframe {
    height: 240px;
  }
}

@media (min-width: 577px) and (max-width: 992px) {

  .about-wrapper {
    gap: 16px;
  }

  .about-stats {
    display: grid;
    /* ensure grid is applied */
    grid-template-columns: repeat(2, 1fr);
  }

  .stat img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    /* prevents distortion */
  }

  /* Hide decorative elements on tablets */
  .about-svg,
  .about1-glow,
  .about2-glow,
  .stats-glow {
    display: none;
  }
}

/* Desktop / Laptop â€“ force single row */
@media (min-width: 993px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {

  .about-wrapper {
    gap: 16px;
  }

  .about-stats {
    display: grid;
    /* ensure grid is applied */
    grid-template-columns: repeat(2, 1fr);
  }

  .stat img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    /* prevents distortion */
  }

  /* Hide decorative elements on tablets */
  .about-svg,
  .about1-glow,
  .about2-glow,
  .stats-glow {
    display: none;
  }
}


/* Story Section */
/* SECTION */
.story-section {
  /* background: #ffffff; */
  padding: 60px 130px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Faded diagonal background shape */
/* .story-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 40%;
  height: 80%;
  background: linear-gradient(135deg, rgba(59, 127, 131, 0.1) 0%, rgba(59, 127, 131, 0) 100%);
  transform: skewX(-20deg);
  z-index: -1;
}
.story-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 30%;
  height: 30%;
  background: linear-gradient(135deg, rgba(59, 127, 131, 0.1) 0%, rgba(59, 127, 131, 0) 100%);
  transform: skewX(-20deg);
  z-index: -1;
} */

.story-section .container {
  /* max-width: 1200px; */
  margin: auto;
  position: relative;
}

/* BIG WATERMARK QUOTE */
.story-wrapper::before {
  content: '\201D';
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 250px;
  font-family: Arial, sans-serif;
  color: #f0f4f4;
  /* Very light teal/gray */
  line-height: 1;
  font-weight: 900;
  z-index: 0;
}

/* GRID */
.story-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  /* max-width: 1320px; */
  width: 100%;
  margin: 0 auto;
}

/* LEFT */
.story-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 480px;
  /* Provides enough height for absolute elements */
}

/* BIG NAME BACKGROUND TEXT */
.story-title {
  color: #0075B0;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: clamp(60px, 6.5vw, 100px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: capitalize;
  position: absolute;
  top: 0px;
  right: 15px;
  /* Anchored to the right of the left column */
  z-index: 1;
  white-space: nowrap;
  /* Will naturally grow to the left without touching the right column */
  letter-spacing: -2px;
}

.story-sub {
  font-size: 20px;
  font-weight: 700;
  color: #555;
  margin-top: 110px;
  /* Leaves vertical space for absolute title */
  margin-bottom: 40px;
  text-align: right;
  z-index: 2;
  position: relative;
  padding-right: 15px;
}

.story-tagline {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 5px;
  color: #666;
  text-align: right;
  z-index: 2;
  position: relative;
  padding-right: 15px;
}

.story-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #1a2f2f;
  text-align: right;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
  padding-right: 15px;
}

/* LINE */
.story-line {
  width: 140px;
  height: 2px;
  background: #0075B0;
  position: relative;
  align-self: flex-end;
  margin-bottom: 30px;
  margin-right: 15px;
}

.story-line::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #0075B0;
  border-radius: 50%;
  position: absolute;
  right: -4px;
  top: -3px;
}

.story-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  margin-right: 15px;
  align-self: flex-end;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.story-watch-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}



.story-watch-ring {
  width: auto;
  height: 83px;
  max-width: none;
  object-fit: contain;
  /* filter: drop-shadow(0 8px 14px rgba(10, 112, 116, 0.35)); */
}

.story-watch-play {
  position: absolute;
  width: 41px;
  height: 36px;
  max-width: none;
  object-fit: contain;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}

.story-watch-text {
  color: #0075B0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.story-watch-video:hover .story-watch-icon {
  transform: translateY(-2px);
}

.story-watch-video:hover .story-watch-text {
  color: #0b7f84;
}

/* IMAGE */
.story-image {
  position: absolute;
  top: 76px;
  left: -30px;
  z-index: 3;
}

.story-image img {
  width: 319px;
  display: block;
}

/* RIGHT */
.story-right {
  position: relative;
  padding-left: 20px;
  z-index: 2;
  padding-top: 15px;
  /* Alignment bump slightly down */
}

.story-right p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
  /* font-family: 'Inter', sans-serif; */
}

/* ===================== */
/* ðŸ“± RESPONSIVE */
/* ===================== */

/* Tablet */
@media (max-width: 992px) {
  .story-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .story-wrapper::before {
    display: none;
  }

  .story-left {
    align-items: center;
    min-height: auto;
    padding-bottom: 0;
  }

  .story-title {
    position: relative;
    font-size: clamp(48px, 10vw, 70px);
    top: 0;
    right: auto;
    white-space: normal;
    /* Allow wrapping on small screens */
    text-align: center;
    margin-bottom: 10px;
  }

  .story-sub,
  .story-tagline,
  .story-heading,
  .story-line,
  .story-watch-video {
    text-align: center;
    padding-right: 0;
    margin-right: 0;
  }

  .story-sub {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 12px;
  }

  .story-line {
    align-self: center;
    margin-bottom: 0px;
  }

  .story-watch-video {
    align-self: center;
    margin-top: 18px;
    margin-bottom: 16px;
  }

  .story-image {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    margin-top: 40px;
  }

  .story-image img {
    margin: 0 auto;
    width: clamp(250px, 50vw, 350px);
  }

  .story-right {
    padding-left: 0;
    padding-top: 10px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .story-section {
    padding: 20px;
  }

  .story-title {
    font-size: 40px;
  }

  .story-heading {
    font-size: 32px;
  }

  .story-tagline {
    font-size: 16px;
  }

  .story-watch-text {
    font-size: 16px;
  }

  .story-right p {
    font-size: 14px;
  }
}

.fimg-shape {
  position: absolute;
  top: -51px;
  left: -99px;
  width: 220px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.fimg-shape2 {
  position: absolute;
  bottom: -51px;
  right: -99px;
  width: 220px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}



/* MindSet Section */
/* SECTION */
.mindset-section {
  position: relative;
  padding: 20px 70px;
  background: #ffffff;
  overflow: hidden;
  cursor: none;
}

.mindset-section * {
  cursor: none;
}

.mindset-wrapper {
  position: relative;
  z-index: 2;
  /* max-width: 1400px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 1fr);
  align-items: center;
  column-gap: 70px;
}

.cursor-circle {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle at center, rgba(0, 117, 176, 0.2), rgba(0, 117, 176, 0.05) 68%, transparent 100%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mindset-left {
  max-width: 980px;
}

.mindset-section .title {
  color: #0075B0;
  font-size: clamp(32px, 2.2vw, 46px);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}



.mindset-section .text-wrapper {
  position: relative;
}

.mindset-section .text {
  margin: 0;
  font-size: clamp(30px, 3.15vw, 62px);
  line-height: 1.17;
  letter-spacing: 0.01em;
  max-width: 920px;
  font-weight: 700;
}

.mindset-section .text.dull {
  color: #B3D4E5;
}

.mindset-section .text.highlight {
  position: absolute;
  inset: 0 auto auto 0;
  color: #0075B0;
  text-shadow: 1px 2px 0 rgba(0, 117, 176, 0.2);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle 0px at 0 0, black 0%, transparent 100%);
  mask-image: radial-gradient(circle 0px at 0 0, black 0%, transparent 100%);
}

.mindset-right {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mindset-logo {
  width: clamp(290px, 30vw, 430px);
  max-width: 100%;
  height: auto;
  opacity: 0.72;
}

.mindset-line {
  position: absolute;
  left: -20%;
  top: 50%;
  width: clamp(130px, 15vw, 210px);
  height: 1px;
  background: #0075B0;
  transform: translateY(-50%);
  overflow: hidden;
}

.mindset-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -22%;
  width: 45%;
  height: 100%;
  background: #0075B0;
  animation: mindsetLineToLogo 1.8s linear infinite;
}

.mindset-dot {
  position: absolute;
  left: calc(-20% - 5px);
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d9197;
  transform: translateY(-50%);
}

@keyframes mindsetLineToLogo {
  from {
    left: -45%;
  }

  to {
    left: 110%;
  }
}

.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle 180px at 50% 50%, rgba(255, 255, 255, 0.28), rgba(238, 240, 241, 0) 72%);
}

@media (max-width: 1200px) {
  .mindset-section {
    padding: 72px 40px;
  }

  .mindset-wrapper {
    column-gap: 46px;
  }

  .mindset-line {
    left: -42%;
  }

  .mindset-dot {
    left: calc(-42% - 5px);
  }
}

@media (max-width: 992px) {
  .mindset-section {
    padding: 62px 26px;
  }

  .mindset-wrapper {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .mindset-right {
    min-height: auto;
    justify-content: center;
  }

  .mindset-line,
  .mindset-dot {
    display: none;
  }
}

@media (max-width: 768px) {
  .mindset-section {
    padding: 52px 15px;
  }

  .mindset-section .title {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .mindset-section .text {
    font-size: 40px;
    max-width: 100%;
  }

  .mindset-logo {
    width: min(320px, 90%);
    opacity: 0.78;
  }

  .cursor-circle,
  .spotlight {
    display: none;
  }
}

/* =======================================
   PHILOSOPHY SECTION 
   ======================================= */
.philosophy-section {
  /* background: #ffffff; */
  padding: 0px 69px 120px 142px;
  overflow: hidden;
}

/* .philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
} */

.branch-node1 {
  position: relative;
  top: 49px;
  right: 62px;
}

/* --- HEADER --- */
.philosophy-header-row {
  position: relative;
}

.philosophy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0075B0;
  /* dark teal matching image */
  margin: 0;
  padding-right: 30px;
}

/* Branch spanning right */
.header-branch {
  height: 40px;
}

.branch-line {
  height: 1px;
  background-color: #a4cece;
}

.node-dot {
  width: 7px;
  height: 7px;
  background-color: #0075B0;
  border-radius: 50%;
  flex-shrink: 0;
}

.node-text {
  color: #0075B0;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}



/* --- CARDS & TREE STRUCTURE --- */
.philosophy-cards-container {
  margin-top: 60px;
  padding-top: 48px;
}

.tree-horizontal-bar {
  position: absolute;
  top: -16px;
  left: 40px;
  right: 0;
  height: 30px;
  border-right: 1px solid #0075B0;
  border-bottom: 1px solid #0075B0;
}

/* .tree-horizontal-bar::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -4px;
  width: 7px;
  height: 7px;
  background-color: #0075B0;
  border-radius: 50%;
} */

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* --- CARD --- */
.philosophy-card {
  position: relative;
  background: transparent;
  padding: 0;
  border-radius: 0;
  transition: all 0.3s ease;
  /* top: 20px; */
}

/* .philosophy-card:hover {
  transform: translateY(-5px);
} */

.tree-branch-down {
  position: absolute;
  top: -35px;
  /* Connects to horizontal bar above */
  left: 40px;
  /* Center of the icon */
  width: 1px;
  height: 30px;
  background-color: #0075B0;
}

/* .tree-branch-down::before {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  background-color: #0075B0;
  border-radius: 50%;
} */

.tree-branch-down::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 7px;
  height: 7px;
  background-color: #0075B0;
  border-radius: 50%;
}

/* --- CARD TOP / ICON / TITLE --- */
.card-top {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  z-index: 1;
  left: 5px;
  top: 20px;
}

img.shape-bg {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  min-width: 250px;
  max-width: 90%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  z-index: -1;
  pointer-events: none;
}

.phy-shape {
  position: absolute;
  top: -21px;
  left: -106px;
  width: 147px;
  /* height: 46px; */
  z-index: 1;
  pointer-events: none;
}

.phy-shape2 {
  position: absolute;
  top: 126px;
  left: 163px;
  width: 147px;
  /* height: 46px; */
  z-index: 1;
  pointer-events: none;
}

.circle-img {
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.card-top h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0075B0;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- CARD TEXT AND BRACKET --- */
.card-body-text {
  position: relative;
  padding-left: 65px;
  /* Leave space for icon: 70px + 15px */
  padding-bottom: 15px;
}

.card-body-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  width: 176px;
}

.card-bracket {
  position: absolute;
  left: 35px;
  top: -15px;
  bottom: -14px;
  width: 50%;
  border-left: 1px solid #0075B0;
  border-bottom: 1px solid #0075B0;
  border-bottom-left-radius: 30px;
  pointer-events: none;
}

.bracket-end-icon {
  position: absolute;
  right: -37px;
  bottom: -13px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* opacity: 0.6; */
}

.bracket-shadow {
  position: absolute;
  right: -25px;
  bottom: -4px;
  width: 45px;
  height: 8px;
  background: linear-gradient(90deg, rgba(6, 208, 218, 0.2), transparent);
  transform: skewX(-35deg);
}

/* ===================== */
/* ðŸ“± RESPONSIVE */
/* ===================== */

/* Large Tablet / Small Desktop */
@media (max-width: 1200px) {
  .philosophy-section {
    padding: 50px 50px 100px 80px;
  }

  .phy-shape {
    left: -60px;
    width: 120px;
  }

  .phy-shape2 {
    width: 120px;
    left: 130px;
    top: 100px;
  }

  img.shape-bg {
    min-width: 200px;
    left: 30px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .philosophy-section {
    padding: 40px 30px 80px 50px;
  }

  .philosophy-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .tree-horizontal-bar {
    right: 25%;
  }

  .philosophy-title {
    font-size: 2rem;
    padding-right: 15px;
  }

  .node-text {
    font-size: 0.95rem;
  }

  .card-top {
    margin-bottom: 35px;
    top: 15px;
  }

  .phy-shape {
    left: -50px;
    width: 100px;
  }

  .phy-shape2 {
    width: 100px;
    left: 110px;
    top: 90px;
  }

  img.shape-bg {
    min-width: 180px;
    left: 25px;
  }

  .card-body-text {
    padding-left: 50px;
  }

  .card-bracket {
    left: 28px;
    width: 55%;
  }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
  .philosophy-section {
    padding: 30px 20px 60px 20px;
  }

  .philosophy-header-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }

  .philosophy-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding-right: 0;
  }

  /* Hide stepped connector line on mobile */
  .philosophy-header-row>.flex-grow-1.position-relative {
    display: none;
  }

  .branch-line {
    display: none;
  }

  .branch-node {
    margin-top: 5px;
  }

  /* Keep "Built on Purpose" directly under "Our Foundation" on mobile */
  .philosophy-header-row>.branch-node:last-child {
    position: static !important;
    height: auto !important;
    align-self: flex-start !important;
    margin-bottom: 0 !important;
    margin-top: 6px !important;
    margin-left: 0 !important;
  }

  .philosophy-header-row>.branch-node:last-child .node-text {
    position: static !important;
    top: auto !important;
    right: auto !important;
    margin-left: 12px !important;
    white-space: nowrap;
  }

  .node-text {
    font-size: 0.85rem;
  }

  /* Hide complex tree lines on mobile for cleaner vertical stacking */
  .tree-horizontal-bar {
    display: none;
  }

  .tree-branch-down {
    display: none;
  }

  .philosophy-cards-container {
    padding-top: 20px;
    margin-top: 15px;
  }

  .philosophy-cards {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .philosophy-card {
    max-width: 360px;
  }

  .card-top {
    margin-bottom: 30px;
    top: 10px;
    gap: 12px;
  }

  .card-top h4 {
    font-size: 1rem;
  }

  img.shape-bg {
    min-width: 180px;
    left: 20px;
  }

  .phy-shape {
    left: -40px;
    width: 90px;
    top: -15px;
  }

  .phy-shape2 {
    width: 90px;
    left: 100px;
    top: 80px;
  }

  .card-body-text {
    padding-left: 45px;
    padding-bottom: 10px;
  }

  .card-body-text p {
    font-size: 0.9rem;
    width: auto !important;
    max-width: 220px;
  }

  .card-bracket {
    left: 25px;
    width: 55%;
    top: -12px;
    bottom: -10px;
  }

  .bracket-end-icon {
    right: -30px;
    bottom: -10px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .philosophy-section {
    padding: 25px 15px 50px 15px;
  }

  .philosophy-title {
    font-size: 1.4rem;
  }

  .philosophy-cards {
    gap: 40px;
  }

  .philosophy-card {
    max-width: 100%;
  }

  .card-top {
    margin-bottom: 25px;
    top: 8px;
    gap: 10px;
  }

  .card-top h4 {
    font-size: 0.95rem;
  }

  .circle-img {
    max-width: 55px;
    max-height: 55px;
  }

  img.shape-bg {
    min-width: 160px;
    left: 15px;
  }

  .phy-shape {
    display: none;
  }

  .phy-shape2 {
    display: none;
  }

  .card-body-text {
    padding-left: 40px;
  }

  .card-body-text p {
    font-size: 0.85rem;
    max-width: 200px;
  }

  .card-bracket {
    left: 22px;
    width: 58%;
    top: -10px;
  }

  .bracket-end-icon {
    right: -25px;
    bottom: -10px;
    max-width: 24px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .philosophy-section {
    padding: 20px 10px 40px 10px;
  }

  .philosophy-title {
    font-size: 1.25rem;
  }

  .philosophy-cards-container {
    padding-top: 15px;
    margin-top: 10px;
  }

  .philosophy-cards {
    gap: 35px;
  }

  .card-top {
    gap: 8px;
    margin-bottom: 20px;
  }

  .card-top h4 {
    font-size: 0.85rem;
  }

  .circle-img {
    max-width: 45px;
    max-height: 45px;
  }

  img.shape-bg {
    min-width: 140px;
  }

  .card-body-text {
    padding-left: 35px;
  }

  .card-body-text p {
    font-size: 0.8rem;
    max-width: 180px;
  }

  .card-bracket {
    left: 18px;
    width: 60%;
  }

  .bracket-end-icon {
    right: -20px;
    max-width: 20px;
  }

  .node-text {
    font-size: 0.8rem;
  }
}





/* FAQ */
/* SECTION */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 70px 50px;
  color: #eaf8f8;
  background: linear-gradient(135deg, #003D6B 1.15%, #0075B0 55%, #00A5DE 100%);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 170, 177, 0.06), transparent 35%);
}

/* CONTAINER */
.faq-container {
  position: relative;
  margin: auto;
  display: flex;
  gap: 72px;
  align-items: flex-start;
  /* max-width: 1280px; */
  z-index: 1;
}

/* .faq-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 56%;
  border-bottom: 1px solid rgba(162, 224, 224, 0.38);
} */

/* LEFT */
.faq-left {
  position: relative;
  flex: 0 0 31%;
}

/* 
.faq-left::after {
  content: "";
  position: absolute;
  left: 35%;
  bottom: -32px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9fbff;
} */

.contact-line {
  position: relative;
  left: 102px;
  top: -4px;
}

.faq-label {
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(224, 250, 250, 0.92);
}

.faq-label span {
  position: relative;
  bottom: 12px;
}

.faq-label svg {
  display: block;
  flex-shrink: 0;
}

/* .faq-label::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 1px;
  background: rgba(196, 241, 241, 0.5);
  left: calc(100% + 10px);
  top: 56%;
} */

.faq-left h2 {
  color: #E4F2F2;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 70px */
}

.faq-left p {
  color: #E4F2F2;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

/* BUTTON */
.faq-btn {
  display: flex;
  width: auto;
  height: 50px;
  padding: 4px 50px 6px 50px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 1000px;
  border: 1px solid #0075B0;
  background: linear-gradient(95deg, #0075B0 0%, #00A5DE 55.61%, #004D7A 101.11%);
  box-shadow:
    0 4px 10px rgba(0, 117, 176, 0.4),
    0 8px 20px rgba(0, 165, 222, 0.3);
  margin-top: 0;
  color: #fff;
}

.faq-btn-vector {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  bottom: 63px;
  left: 31px;
}

/* RIGHT */
.faq-right {
  flex: 1;
  border-top: 1px solid rgba(162, 224, 224, 0.32);
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(162, 224, 224, 0.32);
  padding: 40px 0;
  cursor: pointer;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: clamp(22px, 1.25vw, 28px);
  font-weight: 500;
  color: #e7f9f9;
  line-height: 1.35;
}

.faq-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.8px solid #d6f5f5;
  border-bottom: 1.8px solid #d6f5f5;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-right: 4px;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(205, 232, 232, 0.88);
  transition: max-height 0.28s ease, margin-top 0.28s ease;
  font-size: 14px;
  line-height: 1.65;
  max-width: 88%;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 120px;
  margin-top: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(-135deg) translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .faq-container {
    gap: 48px;
  }

  .faq-question {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .faq-section {
    padding: 60px 30px;
  }

  .faq-container {
    gap: 36px;
  }

  .faq-left {
    flex-basis: 36%;
  }

  .faq-question {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 44px 20px;
  }

  .faq-section svg,
  .faq-section .faq-btn-vector {
    display: none !important;
  }

  .faq-container {
    flex-direction: column;
    gap: 28px;
  }

  .faq-container::after,
  .faq-left::after {
    display: none;
  }

  .faq-left {
    text-align: left;
  }

  .faq-left h2 {
    font-size: 34px;
  }

  .faq-left p {
    max-width: 100%;
  }

  .faq-cta {
    margin-top: 30px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    max-width: 100%;
  }
}





/* SECTION */
.community-section {
  padding: 59px 50px 34px 50px;
  background: #f4f6f6;
}

/* .container {
  max-width: 1200px;
  margin: auto;
} */

/* HEADER */
.community-header h2 {
  color: #0075B0;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;

}

.subtitle p {
  color: #054542;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  right: 320px;
}

.line {
  width: 120px;
  height: 1px;
  background: #9cc7c9;
  position: relative;
  left: 223px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #3b7c85;
  border-radius: 50%;
  position: relative;
  right: 184px;
}

/* GRID */
.community-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.community-card {
  position: relative;
}

/* INNER CARD */
.card-inner {
  position: relative;
  padding: 60px 40px 40px;
  text-align: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🔥 BACKGROUND VECTOR (FIXED POSITION) */
.bg-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: fill;
}

/* IMAGE */
.card-img {
  width: 65%;
  height: 134px;
  border-radius: 10px;
  margin-bottom: 104px;
  position: relative;
  z-index: 2;
  object-fit: cover;
  top: 105px;
}

/* TEXT */
.card-inner p {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 600;
  color: #003d6b;
  width: 100%;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 10px;
}

/* ARROW (BOTTOM LEFT LIKE DESIGN) */
.arrow-overlay-svg {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 45px;
  z-index: 10;
}

/* VECTOR DECOR */
.vector {
  position: absolute;
  opacity: 0.3;
  pointer-events: none;
}

.vector.top {
  top: -20px;
  left: -10px;
  width: 80px;
}

.vector.bottom {
  bottom: -20px;
  right: -10px;
  width: 80px;
}

/* HOVER */
.community-card:hover .card-inner {
  transform: translateY(-8px);
  transition: 0.3s;
}

/* Hide stroke initially */

.community-card:hover .arrow-overlay-svg {
  transform: translateX(5px) scale(1.05);
  transition: 0.3s;
}

/* ================= */
/* RESPONSIVE */
/* ================= */
/* ========================= */
/* âœ… IMPROVED RESPONSIVENESS */
/* ========================= */

/* LARGE LAPTOP (your current stays same) */
@media (max-width: 1200px) {
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .community-section {
    padding: 60px 20px;
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 80px;
  }

  .community-header h2 {
    font-size: 32px;
  }

  /* .card-img {
    height: 120px;
  } */

  .bg-vector {
    width: 120px;
    bottom: -60px;
  }
}

/* SMALL TABLET */
@media (max-width: 768px) {
  .community-header {
    text-align: center;
  }

  .subtitle {
    justify-content: center;
  }

  .community-grid {
    gap: 20px;
    margin-top: 60px;
  }

  .card-inner {
    padding: 20px;
  }

  .card-inner p {
    font-size: 13px;
  }

  .bg-vector,
  .arrow-overlay-svg {
    display: none;
  }

  .subtitle p {
    color: #3b7c85;
    font-size: 20px;
    position: relative;
    left: 0;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .community-section {
    padding: 50px 15px;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .community-header h2 {
    font-size: 24px;
  }

  .line {
    display: none;
  }

  .dot {
    display: none;
  }

  /* .card-img {
    height: 110px;
  } */

  .bg-vector {
    width: 100px;
    bottom: -50px;
    left: 5px;
    opacity: 0.7;
  }

  .arrow {
    width: 22px;
  }

  .card-img {
    width: 45%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    left: 77px;
  }
}

/* EXTRA SMALL (very small phones) */
@media (max-width: 400px) {
  .card-inner {
    padding: 15px;
  }

  .card-inner p {
    font-size: 12px;
  }

  .card-img {
    height: 100px;
  }
}

/* ===== CATEGORY GRID: FINAL RESPONSIVE OVERRIDES ===== */
#categoryGrid {
  padding-top: clamp(20px, 4vw, 0px);
  padding-bottom: clamp(20px, 4vw, 50px);
}

#categoryGrid .category-asymmetric-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(10px, 1.4vw, 16px);
}

#categoryGrid .cat-grid-item {
  min-height: clamp(180px, 22vw, 260px);
  background: linear-gradient(135deg, #f1f3f5 0%, #dee2e6 100%);
  overflow: visible;
  perspective: 1100px;
}

#categoryGrid .cat-grid-item:nth-child(1) {
  background: linear-gradient(135deg, #eceff1 0%, #d6dbe0 100%);
}

#categoryGrid .cat-grid-item:nth-child(2) {
  background: linear-gradient(135deg, #f3f5f7 0%, #dde2e7 100%);
}

#categoryGrid .cat-grid-item:nth-child(3) {
  background: linear-gradient(135deg, #edf1f4 0%, #d7dde3 100%);
}

#categoryGrid .cat-grid-item:nth-child(4) {
  background: linear-gradient(135deg, #f1f4f6 0%, #dbe0e5 100%);
}

#categoryGrid .cat-grid-item:nth-child(5) {
  background: linear-gradient(135deg, #eef2f5 0%, #d8dee4 100%);
}

#categoryGrid .cat-grid-large {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: clamp(360px, 46vw, 540px);
}

#categoryGrid .cat-grid-item img {
  padding: clamp(12px, 2vw, 20px);
}

#categoryGrid .cat-grid-label {
  top: clamp(8px, 1.2vw, 20px);
  right: clamp(8px, 1.2vw, 20px);
  padding: clamp(5px, 0.7vw, 8px) clamp(10px, 1.6vw, 20px);
  font-size: clamp(0.62rem, 0.9vw, 0.8rem);
}

@media (max-width: 991px) {
  #categoryGrid .category-asymmetric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #categoryGrid .cat-grid-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  #categoryGrid .category-asymmetric-grid {
    grid-template-columns: 1fr;
  }

  #categoryGrid .cat-grid-item {
    min-height: 200px;
  }

  #categoryGrid .cat-grid-large {
    min-height: 240px;
  }
}

@media (max-width: 420px) {
  #categoryGrid .cat-grid-item {
    min-height: 170px;
  }

  #categoryGrid .cat-grid-large {
    min-height: 210px;
  }
}

/* ===== CONFIRM POPUP ===== */
.confirm-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.confirm-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.confirm-popup-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 28px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.confirm-popup-overlay.show .confirm-popup-box {
  transform: scale(1);
}

.confirm-popup-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.confirm-popup-icon i {
  font-size: 1.6rem;
  color: #dc3545;
}

.confirm-popup-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: #0D0D0D;
  margin-bottom: 8px;
}

.confirm-popup-msg {
  font-size: 0.9rem;
  color: #6C757D;
  margin-bottom: 24px;
  line-height: 1.5;
}

.confirm-popup-actions {
  display: flex;
  gap: 12px;
}

.confirm-popup-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.confirm-popup-cancel {
  background: #F0F0F0;
  color: #495057;
}

.confirm-popup-cancel:hover {
  background: #E0E0E0;
}

.confirm-popup-yes {
  background: #dc3545;
  color: #fff;
}

.confirm-popup-yes:hover {
  background: #c82333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* =========================================================
   HERO SECTION RESPONSIVE OVERRIDES (NON-DESTRUCTIVE)
   Keeps existing CSS intact and only overrides where needed
   ========================================================= */
@media (max-width: 2000px) {
  .card-svg.right {
    width: 230px !important;
    right: 214px !important;
  }

  .card-svg.back-2 {
    width: 150px;
    right: 115px;
  }
}


@media (max-width: 1800px) {
  .card-svg.right {
    width: 230px !important;
    right: 116px !important;
  }

  .card-svg.back-2 {
    width: 150px;
    right: 25px;
  }
}


/* Large desktops */
@media (max-width: 1600px) {
  .hero-section {
    min-height: 600px;
    padding: 36px 28px 52px;
  }

  .card-svg.big {
    width: 390px;
    left: 96px;
  }

  .card-svg.right {
    width: 230px !important;
    right: 77px !important;
  }

  .card-svg.left {
    width: 230px;
    left: 80px;
    top: 148px;
  }

  .card-svg.back-2 {
    width: 150px !important;
    right: -13px !important;
  }

  .img-main {
    width: 220px;
  }

  .img-small,
  .img-small2 {
    width: 112px;
  }

  .bottom-overlay-svg {
    left: 430px;
    width: 122px;
  }
}

/* Laptops */
@media (max-width: 1400px) {
  .hero-section {
    min-height: 560px;
    padding: 30px 18px 46px;
  }

  .card-svg.big {
    width: 340px;
    left: 72px;
  }

  .card-svg.right {
    width: 198px;
    right: 0;
    top: 8px;
  }

  .card-svg.left {
    width: 198px !important;
    left: 62px !important;
    top: 130px;
  }

  .card-svg.back {
    width: 122px;
    left: 44px;
    top: 192px;
  }

  .card-svg.back-2 {
    width: 120px;
    right: -34px;
    top: 10px;
  }

  .img-main {
    width: 184px;
  }

  .img-small,
  .img-small2 {
    width: 95px;
  }

  .accent-line-right,
  .accent-line-right2,
  .accent-line-left,
  .accent-line-left2 {
    transform: scale(0.85);
    transform-origin: center;
  }

  .bottom-overlay-svg {
    left: 370px;
    width: 106px;
    bottom: -24px;
  }

  .glass-box {
    width: 100%;
    max-width: 520px;
    height: auto;
    padding: 52px 44px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 24px 14px 36px;
  }

  .hero-left,
  .hero-section .col-lg-6:first-child {
    display: none !important;
  }

  .hero-section .col-lg-6:last-child {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: center !important;
    text-align: center;
  }

  .glass-box {
    width: 100%;
    max-width: 560px;
    height: auto;
    /* padding: 40px 28px; */
    margin: 0 auto;
  }
}

/* Large mobiles */
@media (max-width: 768px) {
  .hero-section {
    padding: 18px 12px 30px;
  }

  .glass-box {
    max-width: 100%;
    /* padding: 30px 20px; */
    border-radius: 20px;
  }

  .glass-box h1 {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .glass-box h6 {
    font-size: 0.95rem;
  }
}

/* Small mobiles */
@media (max-width: 576px) {
  .hero-section {
    padding: 14px 10px 24px;
  }

  .glass-box {
    /* padding: 24px 16px; */
    border-radius: 16px;
  }

  .glass-box h1 {
    font-size: 1.65rem;
  }

  .glass-box .body-content {
    font-size: 0.88rem;
  }

  .glass-box .btn-info {
    width: 100%;
    padding: 10px 16px;
  }
}



.cart-page-wrap {
  padding: 0 50px;
}

/* Product Card Quantity Controller - Premium Redesign */
.pm-quantity-controller {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #ffffff;
  border-radius: 50px;
  padding: 3px;
  border: 1.5px solid #0075B0;
  width: 100%;
  box-shadow: 0 4px 15px rgba(1, 112, 117, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm-quantity-controller .btn-qty {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #0075B0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 1.2rem;
}

.pm-quantity-controller .btn-qty:hover {
  background: #0075B0;
  color: #ffffff;
  transform: scale(1.1);
}

.pm-quantity-controller .pm-qty-value {
  font-weight: 800;
  font-size: 1.1rem;
  color: #0075B0;
  min-width: 25px;
  text-align: center;
  user-select: none;
}

.pm-add-to-cart-form.d-none,
.pm-quantity-controller.d-none {
  display: none !important;
}



.smalllogo {
  position: relative;
  left: 70px;
}

@media (max-width: 992px) {
  .smalllogo {
    left: 0px;
  }
}