/** Shopify CDN: Minification failed

Line 422:17 Expected identifier but found whitespace
Line 422:18 Unexpected "0.02em"

**/
/* 
  custom-global.css
  Global stylesheet for custom sections.
*/


.list-menu__item{
  font-size: 2rem !important;
}

:root {
  --color-primary: #0791a6;
  --color-secondary: #002559;
  --color-white: #ffffff;
  --color-black: #000000;
  
  --font-family-global: 'Assistant', sans-serif; /* Fallback to Dawn theme default */
}

/* Custom Scroll marquee section styling */
.custom-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 15px;
}

.custom-marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
}

/* Normal Scroll Left */
.custom-marquee--scroll-left .custom-marquee__track {
  animation: marquee-left 25s linear infinite;
}

/* Scroll Right */
.custom-marquee--scroll-right .custom-marquee__track {
  animation: marquee-right 25s linear infinite;
}

/* Pause on hover state */
.custom-marquee--pause-hover:hover .custom-marquee__track {
  animation-play-state: paused !important;
}

.custom-marquee__group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  flex-shrink: 0;
}

.custom-marquee__item {
  display: inline-flex;
  align-items: center;
  padding: 0 1.5rem;
  font-family: var(--font-family-global);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

/* Custom separator */
.custom-marquee__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  opacity: 0.9;
}

.custom-marquee__separator svg {
  display: block;
  fill: currentColor;
  width: 14px;
  height: 14px;
}

/* Gradient fade effects on edges for premium feel */
.custom-marquee--fade-edges::before,
.custom-marquee--fade-edges::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.custom-marquee--fade-edges::before {
  left: 0;
  background: linear-gradient(to right, rgba(7, 145, 166, 1) 0%, rgba(7, 145, 166, 0) 100%);
}

.custom-marquee--fade-edges::after {
  right: 0;
  background: linear-gradient(to left, rgba(7, 145, 166, 1) 0%, rgba(7, 145, 166, 0) 100%);
}

/* Animation Keyframes */
@keyframes marquee-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive adjustments */
@media screen and (max-width: 749px) {
  .custom-marquee__item {
    padding: 0 1rem;
    font-size: 13px !important;
  }
  .custom-marquee__separator {
    margin-left: 1rem;
  }
  .custom-marquee__separator svg {
    width: 10px;
    height: 10px;
  }
  .custom-marquee--fade-edges::before,
  .custom-marquee--fade-edges::after {
    width: 30px;
  }
}

/* About Us Section Styling */
.about-us {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--color-white);
  box-sizing: border-box;
}

/* Desktop absolute background layers */
@media screen and (min-width: 990px) {
  .about-us__bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 54.5%;
    background-color: var(--color-primary); /* Teal edge lines */
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .about-us__bg-main {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 53.5%;
    background-color: var(--color-secondary); /* Dark blue main panel */
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .about-us__bg-accent-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12%;
    height: 90px;
    background-color: var(--color-primary); /* Bottom-left teal chevron decoration */
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index: 3;
  }
}

.about-us__container {
  display: flex;
  flex-direction: column; /* Mobile first stack */
  width: 100%;
  position: relative;
  z-index: 4;
}

@media screen and (min-width: 990px) {
  .about-us__container {
    flex-direction: row;
    min-height: 580px;
  }
}

/* Content Column (Left Side) */
.about-us__content-col {
  width: 100%;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  background-color: var(--color-secondary); /* Solid color on mobile */
  transition: all 0.3s ease;
}

@media screen and (max-width: 989px) {
  .about-us__content-col {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    padding-bottom: 5rem;
  }
  
  /* Highlight teal bottom outline bar on mobile */
  .about-us__content-col::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: var(--color-primary);
    z-index: -1;
  }
}

@media screen and (min-width: 990px) {
  .about-us__content-col {
    width: 46%; /* Leaves space for the slant */
    padding: 5rem 2rem 5rem 6rem;
    background-color: transparent; /* Allows desktop clip-path bg layers to show */
  }
}

/* Image Column (Right Side) */
.about-us__image-col {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media screen and (max-width: 989px) {
  .about-us__image-col {
    margin-top: -4%; /* Pull up slightly to fit mobile skew overlap */
    z-index: 3;
  }
}

@media screen and (min-width: 990px) {
  .about-us__image-col {
    width: 54%;
    min-height: 100%;
    margin-left: auto;
  }
}

.about-us__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 65%; /* Aspect ratio on mobile */
}

@media screen and (min-width: 990px) {
  .about-us__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-bottom: 0;
  }
}

.about-us__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Typography & Accent Elements */
.about-us__title {
  font-family: var(--font-family-global);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
  line-height: 1.1;
}

.about-us__title span {
  color: var(--color-primary); /* Highlighted part (e.g., "US") */
}

@media screen and (min-width: 990px) {
  .about-us__title {
    font-size: 46px;
  }
}

/* Statement Block (between lines) */
.about-us__statement-wrapper {
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding: 1.2rem 0;
  margin-bottom: 2rem;
  max-width: 500px;
}

.about-us__statement {
  font-family: var(--font-family-global);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

.about-us__statement span {
  color: var(--color-primary); /* Accent word color (e.g. "Septick Fix") */
  font-weight: 700;
}

@media screen and (min-width: 990px) {
  .about-us__statement {
    font-size: 21px;
  }
}

/* Key Points List */
.about-us__points-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 500px;
}

.about-us__point {
  display: flex;
  align-items: flex-start;
}

.about-us__point-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  flex-shrink: 0;
  margin-right: 1.2rem;
}

.about-us__point-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.about-us__point-content {
  flex: 1;
}

.about-us__point-desc {
  margin: 0;
  font-family: var(--font-family-global);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.about-us__point-desc strong {
  color: var(--color-primary);
  font-weight: 700;
}

@media screen and (min-width: 990px) {
  .about-us__point-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-right: 1.5rem;
  }
  .about-us__point-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  .about-us__point-desc {
    font-size: 15.5px;
  }
}
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.about-us__call-link:hover .about-us__call-number {
  color: var(--color-white);
}
@media screen and (min-width: 990px) {
  .about-us__cta-row {
    gap: 2rem;
    margin-top: 2.8rem;
  }
  .about-us__btn {
    font-size: 16px;
    padding: 0.85rem 2.4rem;
  }
  .about-us__call-icon {
    width: 46px;
    height: 46px;
  }
  .about-us__call-icon svg {
    width: 20px;
    height: 20px;
  }
  .about-us__call-label {
    font-size: 14px;
  }
  .about-us__call-number {
    font-size: 18px;
  }
}

/* Pack Selector Section Styling */
.pack-selector {
  width: 100%;
  box-sizing: border-box;
  background-color: #f8fafc; /* Light grey backdrop to make the white card pop */
}

.pack-selector__container {
  display: flex;
  flex-direction: column; /* Mobile first stack */
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  box-sizing: border-box;
}

@media screen and (min-width: 990px) {
  .pack-selector__container {
    flex-direction: row;
    align-items: stretch;
  }
}

/* Left Image Column */
.pack-selector__image-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 2rem 1.5rem;
}

@media screen and (min-width: 990px) {
  .pack-selector__image-col {
    width: 50%;
    padding: 3rem;
  }
}

.pack-selector__image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-selector__image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Right Card Column */
.pack-selector__card-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1.5rem;
}

@media screen and (min-width: 990px) {
  .pack-selector__card-col {
    width: 50%;
    padding: 3rem;
  }
}

/* Pack Selector Card */
.pack-selector__card {
  width: 100%;
  max-width: 580px;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 37, 89, 0.1);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 750px) {
  .pack-selector__card {
    padding: 2.5rem 3rem;
  }
}

/* Header Bar inside Card */
.pack-selector__header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}

.pack-selector__header-bar {
  background-color: var(--color-secondary); /* Navy */
  color: var(--color-white);
  flex: 1;
  padding: 0.8rem 1.5rem 0.8rem 3.5rem; /* Large left padding for badge spacing */
  border-radius: 12px;
  font-family: var(--font-family-global);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  box-sizing: border-box;
}

.pack-selector__header-badge {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-primary); /* Teal */
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(7, 145, 166, 0.3);
  z-index: 2;
}

.pack-selector__header-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media screen and (min-width: 750px) {
  .pack-selector__header-bar {
    font-size: 19px;
    padding: 0.8rem 2rem 0.8rem 4rem;
    min-height: 54px;
  }
  
  .pack-selector__header-badge {
    width: 60px;
    height: 60px;
  }
  
  .pack-selector__header-badge svg {
    width: 28px;
    height: 28px;
  }
}

/* Card Description Content */
.pack-selector__card-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pack-selector__card-title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 0.6rem 0;
  line-height: 1.2;
}

.pack-selector__card-desc {
  font-family: var(--font-family-global);
  color: #475569;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .pack-selector__card-title {
    font-size: 24px;
  }
  .pack-selector__card-desc {
    font-size: 15px;
  }
}

/* Pack Option List */
.pack-selector__list {
  display: flex;
  flex-direction: column;
}

.pack-selector__row {
  display: flex;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0, 37, 89, 0.08);
  box-sizing: border-box;
}

.pack-selector__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pack-selector__row:first-child {
  padding-top: 0;
}

/* Option Row Icon */
.pack-selector__row-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--color-primary); /* Teal */
  color: var(--color-white);
  flex-shrink: 0;
}

.pack-selector__row-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Option Row Details (Middle) */
.pack-selector__row-details {
  flex: 1;
  margin-left: 1.2rem;
}

.pack-selector__row-title {
  font-family: var(--font-family-global);
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  line-height: 1.2;
}

.pack-selector__row-desc {
  font-family: var(--font-family-global);
  color: #64748b;
  font-size: 13.5px;
  margin: 0;
  line-height: 1.2;
}

/* Option Row Arrow Separator */
.pack-selector__row-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin: 0 1.2rem;
  flex-shrink: 0;
}

.pack-selector__row-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Option Row Checkout Block (Right) */
.pack-selector__row-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 50%;
}

.pack-selector__buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary); /* Navy */
  color: var(--color-white);
  font-family: var(--font-family-global);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-sizing: border-box;
}

.pack-selector__buy-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-right: 6px;
}

.pack-selector__buy-btn:hover {
  background-color: var(--color-primary); /* Teal hover */
}

.pack-selector__buy-btn:active {
  transform: scale(0.97);
}

.pack-selector__weight {
  font-family: var(--font-family-global);
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.2;
}

/* Responsive adjustments for mobile view */
@media screen and (max-width: 600px) {
  .pack-selector__row {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .pack-selector__row-arrow {
    display: none; /* Hide arrow on mobile to prevent clutter */
  }
  
  .pack-selector__row-details {
    margin-left: 0.8rem;
    flex: 1 1 60%;
  }
  
  .pack-selector__row-action {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f5f9;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    margin-top: 0.2rem;
    box-sizing: border-box;
  }
  
  .pack-selector__buy-btn {
    order: 2; /* Push button to the right */
    padding: 0.5rem 1.2rem;
    font-size: 11.5px;
  }
  
  .pack-selector__weight {
    order: 1; /* Push weight description to the left */
    margin-top: 0;
    font-size: 11.5px;
  }
}



/* Custom Footer Styling */
.custom-footer {
  width: 100%;
  background-color: var(--color-secondary); /* Navy blue default */
  color: var(--color-white);
  padding: 4rem 1.5rem 2rem 1.5rem;
  box-sizing: border-box;
  font-family: var(--font-family-global);
}

@media screen and (min-width: 750px) {
  .custom-footer {
    padding: 5rem 4rem 2rem 4rem;
  }
}

.custom-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 750px) {
  .custom-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

/* Brand Column */
.custom-footer__col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.custom-footer__logo {
  max-height: 48px;
  width: auto;
  display: block;
}

.custom-footer__logo-placeholder {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin: 0;
}

.custom-footer__brand-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 280px;
}

.custom-footer__brand-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.2s ease;
}

.custom-footer__brand-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.custom-footer__brand-whatsapp:hover {
  background-color: var(--color-primary); /* Teal hover */
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Common Column Headers */
.custom-footer__title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem 0;
  color: var(--color-white);
  line-height: 1.2;
  width: 100%;
}

.custom-footer__chevron {
  display: none; /* Only visible on mobile */
  fill: currentColor;
}

/* Link Menus */
.custom-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.custom-footer__menu-link {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.custom-footer__menu-link:hover {
  color: var(--color-primary); /* Teal hover */
  padding-left: 2px;
}

/* Office Timings */
.custom-footer__col-timings {
  display: flex;
  flex-direction: column;
}

.custom-footer__timings-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.6rem 0;
  line-height: 1.4;
}

.custom-footer__timings-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

/* Mobile collapsible overrides */
@media screen and (max-width: 749px) {
  .custom-footer__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 0;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .custom-footer__chevron {
    display: block;
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
  }

  .custom-footer__collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  }

  .custom-footer__col.is-open .custom-footer__collapsible-content {
    max-height: 350px;
    padding: 1rem 0 1.5rem 0;
  }

  .custom-footer__col.is-open .custom-footer__chevron {
    transform: rotate(180deg);
  }

  .custom-footer__col.is-open .custom-footer__title {
    border-bottom-color: transparent;
  }
}

/* Bottom Contact Bar */
.custom-footer__contact-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 0;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media screen and (min-width: 750px) {
  .custom-footer__contact-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.2rem 0;
  }
}

.custom-footer__contact-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.custom-footer__contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-primary); /* Teal icon */
  flex-shrink: 0;
  margin-right: 1.2rem;
  transition: all 0.2s ease;
}

.custom-footer__contact-icon-wrapper svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.custom-footer__contact-item:hover .custom-footer__contact-icon-wrapper {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
}

.custom-footer__contact-details {
  display: flex;
  flex-direction: column;
}

.custom-footer__contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.custom-footer__contact-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
}

@media screen and (min-width: 750px) {
  .custom-footer__contact-value {
    font-size: 19px;
  }
}

/* Copyright Bar */
.custom-footer__copyright-bar {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  padding-top: 0.5rem;
}

/* Fixed Floating WhatsApp Icon */
.whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25D366; /* Official WA Green */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  animation: wa-bounce 2.5s infinite;
}

.whatsapp-floating svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}

.whatsapp-floating:hover {
  background-color: #128C7E; /* Darker WA Green */
  transform: scale(1.08);
}

.whatsapp-floating:active {
  transform: scale(0.95);
}

@media screen and (min-width: 750px) {
  .whatsapp-floating {
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
  }
  .whatsapp-floating svg {
    width: 34px;
    height: 34px;
  }
}

@keyframes wa-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}


/* Product Carousel Styling */
.product-carousel {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.product-carousel__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  position: relative;
}

/* Carousel Header (Title & Nav Arrows) */
.product-carousel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  width: 100%;
}

.product-carousel__titles {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-carousel__sec-title {
  font-family: var(--font-family-global);
  color: var(--color-secondary);
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-carousel__sec-subtitle {
  font-family: var(--font-family-global);
  color: #64748b;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .product-carousel__sec-title {
    font-size: 34px;
  }
  .product-carousel__sec-subtitle {
    font-size: 16px;
  }
}

/* Nav Arrows */
.product-carousel__nav {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.product-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 37, 89, 0.15);
  color: var(--color-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.product-carousel__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.product-carousel__btn:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
  transform: scale(1.05);
}

.product-carousel__btn:active {
  transform: scale(0.95);
}

.product-carousel__btn--disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Slider Track Wrapper */
.product-carousel__track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.product-carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  box-sizing: border-box;
}

/* Slide item */
.product-carousel__slide {
  flex-shrink: 0;
  width: 50%; /* Mobile: exactly 2 items */
  padding: 0 0.4rem;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .product-carousel__slide {
    width: 33.333%; /* Tablet: 3 items */
    padding: 0 0.6rem;
  }
}

@media screen and (min-width: 990px) {
  .product-carousel__slide {
    width: 25%; /* Desktop: 4 items */
    padding: 0 0.8rem;
  }
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 37, 89, 0.06);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 37, 89, 0.08);
  transform: translateY(-4px);
}

/* Square Image Wrapper */
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Strict 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: #f8fafc;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

/* Hover Quickview button overlay */
.product-card__quickview {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 12px);
  background-color: var(--color-white);
  color: var(--color-secondary);
  border: none;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-family: var(--font-family-global);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  z-index: 3;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.product-card__quickview svg {
  display: none; /* Text only on desktop hover */
}

.product-card__quickview:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.product-card:hover .product-card__quickview {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Mobile Quickview Adjustment */
@media screen and (max-width: 749px) {
  .product-card__quickview {
    position: absolute;
    bottom: auto;
    left: auto;
    top: 8px;
    right: 8px;
    transform: none !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
  }
  
  /* Text hidden, SVG eye icon shown */
  .product-card__quickview span {
    display: none;
  }
  .product-card__quickview svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
}

/* Product Info */
.product-card__info {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .product-card__info {
    padding: 1.2rem;
  }
}

.product-card__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary);
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
  
  /* Multiline truncate */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 2.6em;
}

@media screen and (min-width: 750px) {
  .product-card__title {
    font-size: 15px;
  }
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-family-global);
}

.product-card__price-amount {
  font-weight: 800;
  color: var(--color-primary);
  font-size: 14.5px;
}

.product-card__price-compare {
  font-size: 12.5px;
  color: #94a3b8;
  text-decoration: line-through;
}

@media screen and (min-width: 750px) {
  .product-card__price-amount {
    font-size: 16.5px;
  }
}

/* Add to Cart Button */
.product-card__form {
  margin-top: auto;
  width: 100%;
}

.product-card__add-btn {
  width: 100%;
  background-color: var(--color-secondary); /* Navy */
  color: var(--color-white);
  border: none;
  padding: 0.65rem;
  border-radius: 6px;
  font-family: var(--font-family-global);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.product-card__add-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.product-card__add-btn:hover {
  background-color: var(--color-primary); /* Teal */
}

.product-card__add-btn:disabled {
  background-color: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

/* Bottom View All Link */
.product-carousel__view-all-wrapper {
  text-align: center;
  margin-top: 2.5rem;
  width: 100%;
}

.product-carousel__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary); /* Teal */
  color: var(--color-white);
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  font-family: var(--font-family-global);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.product-carousel__view-all:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 37, 89, 0.15);
}

.product-carousel__view-all:active {
  transform: translateY(0);
}

/* Quick View Modal styling */
.quickview-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 37, 89, 0.5); /* Dim navy backdrop */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
  padding: 1rem;
}

.quickview-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.quickview-modal__container {
  background-color: var(--color-white);
  border-radius: 16px;
  width: 100%;
  max-width: 780px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: scale(0.93);
  transition: transform 0.3s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.quickview-modal--open .quickview-modal__container {
  transform: scale(1);
}

/* Close Button */
.quickview-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 37, 89, 0.05);
  color: var(--color-secondary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.2s;
}

.quickview-modal__close svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.quickview-modal__close:hover {
  background-color: rgba(0, 37, 89, 0.1);
}

/* Modal Layout Grid */
.quickview-modal__body {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .quickview-modal__body {
    grid-template-columns: 1.1fr 0.5fr;
  }
}

.quickview-modal__media {
  width: 100%;
  position: relative;
  padding-bottom: 100%; /* Square aspect ratio feature image */
  background-color: #f8fafc;
}

.quickview-modal__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Details Panel */
.quickview-modal__details {
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-family-global);
}

@media screen and (min-width: 750px) {
  .quickview-modal__details {
    padding: 3rem 2.5rem;
  }
}

.quickview-modal__title {
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 0.6rem 0;
  line-height: 1.2;
}

.quickview-modal__price-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.quickview-modal__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
}

.quickview-modal__price-compare {
  font-size: 15px;
  color: #94a3b8;
  text-decoration: line-through;
}

.quickview-modal__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  max-height: 160px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Scrollbar styling for modal description */
.quickview-modal__desc::-webkit-scrollbar {
  width: 4px;
}
.quickview-modal__desc::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.quickview-modal__desc::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* Variant drop downs */
.quickview-modal__variants {
  margin-bottom: 1.5rem;
  width: 100%;
}

.quickview-modal__label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.quickview-modal__select {
  width: 100%;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 37, 89, 0.15);
  font-family: var(--font-family-global);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-secondary);
  background-color: var(--color-white);
  cursor: pointer;
  box-sizing: border-box;
}

.quickview-modal__select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.quickview-modal__add-btn {
  width: 100%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-family: var(--font-family-global);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.quickview-modal__add-btn:hover {
  background-color: var(--color-primary);
}

.quickview-modal__add-btn:disabled {
  background-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
}

/* Loader Spinner inside Modal */
.quickview-modal__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  width: 100%;
  box-sizing: border-box;
}

.quickview-modal__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(7, 145, 166, 0.1);
  border-left-color: var(--color-primary);
  border-radius: 50%;
  animation: wa-spin 0.8s linear infinite;
}

@keyframes wa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* About Us Info Section Styling */
.about-us-info {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-white);
}

.about-us-info__container {
  display: flex;
  flex-direction: column; /* Mobile first stack */
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  gap: 3rem;
}

@media screen and (min-width: 990px) {
  .about-us-info__container {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
}

/* Section Header (Centered) */
.about-us-info__header {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.about-us-info__sec-subtitle {
  font-family: var(--font-family-global);
  color: var(--color-primary); /* Teal */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
  display: block;
}

.about-us-info__sec-title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .about-us-info__sec-title {
    font-size: 38px;
  }
}

/* Left Content Column */
.about-us-info__content-col {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 990px) {
  .about-us-info__content-col {
    width: 50%;
    padding-right: 1.5rem;
  }
}

/* Main Split-Color Heading */
.about-us-info__main-heading {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-us-info__main-heading span {
  color: var(--color-primary); /* Teal */
}

@media screen and (min-width: 750px) {
  .about-us-info__main-heading {
    font-size: 36px;
  }
}

/* Teal Horizontal Line */
.about-us-info__line {
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 1.2rem 0 1.8rem 0;
  border: none;
}

/* Paragraphs */
.about-us-info__p {
  font-family: var(--font-family-global);
  color: #475569;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
}

.about-us-info__p:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .about-us-info__p {
    font-size: 15.5px;
  }
}

/* Goal Callout Box */
.about-us-info__goal-box {
  display: flex;
  align-items: center;
  background-color: #f0fdfa; /* Extremely light teal background */
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
  box-sizing: border-box;
}

.about-us-info__goal-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(7, 145, 166, 0.15);
  color: var(--color-primary); /* Teal icon */
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(7, 145, 166, 0.05);
}

.about-us-info__goal-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.about-us-info__goal-details {
  flex: 1;
  margin-left: 1.2rem;
}

.about-us-info__goal-label {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
  display: block;
}

.about-us-info__goal-text {
  font-family: var(--font-family-global);
  color: var(--color-primary); /* Teal */
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

@media screen and (min-width: 750px) {
  .about-us-info__goal-box {
    padding: 1.4rem 2rem;
  }
  .about-us-info__goal-text {
    font-size: 16px;
  }
}

/* Right Media Column */
.about-us-info__image-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

@media screen and (min-width: 990px) {
  .about-us-info__image-col {
    width: 50%;
  }
}

.about-us-info__image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 480px;
}

/* organic backdrop navy shape behind cutout image */
.about-us-info__image-backdrop {
  position: absolute;
  bottom: 0;
  width: 82%;
  height: 74%;
  background-color: var(--color-secondary); /* Navy */
  border-radius: 120px 120px 40px 120px;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 37, 89, 0.05);
}

.about-us-info__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}


/* FAQ Section Styling */
.faq-section {
  width: 100%;
  box-sizing: border-box;
  background-color: #f8fafc; /* Light gray page background to make white accordion cards pop */
}

.faq-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Section Header (Centered) */
.faq-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.faq-section__subtitle {
  font-family: var(--font-family-global);
  color: var(--color-primary); /* Teal */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
  display: block;
}

.faq-section__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .faq-section__title {
    font-size: 38px;
  }
}

/* 2-Column Responsive FAQ Grid */
.faq-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 990px) {
  .faq-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.faq-section__col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

/* FAQ Accordion Cards */
.faq-card {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 37, 89, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.faq-card:hover {
  border-color: var(--color-primary); /* Teal hover */
  box-shadow: 0 10px 25px rgba(7, 145, 166, 0.06);
  transform: translateY(-1px);
}

/* Question Header Bar */
.faq-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
}

.faq-card__question {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

@media screen and (min-width: 750px) {
  .faq-card__question {
    font-size: 16.5px;
  }
}

/* Rotating Arrow Icon */
.faq-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary); /* Teal */
  flex-shrink: 0;
  margin-left: 1.2rem;
  transition: transform 0.25s ease;
}

.faq-card__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

/* Collapsible Content Panels */
.faq-card__content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
}

.faq-card__answer {
  padding: 0 1.6rem 1.4rem 1.6rem;
  font-family: var(--font-family-global);
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .faq-card__answer {
    font-size: 14.5px;
  }
}

/* Expanded active state class toggled via JS */
.faq-card.is-open {
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(7, 145, 166, 0.05);
}

.faq-card.is-open .faq-card__content-wrapper {
  max-height: 500px; /* Arbitrary max height to allow slide-down scroll bounds */
}

.faq-card.is-open .faq-card__icon {
  transform: rotate(180deg); /* Flip chevron */
}


/* Contact Us Section Styling */
.contact-section {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-white);
}

.contact-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Centered Top Header */
.contact-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.contact-section__subtitle {
  font-family: var(--font-family-global);
  color: var(--color-primary); /* Teal */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
  display: block;
}

.contact-section__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

.contact-section__desc {
  font-family: var(--font-family-global);
  color: #475569;
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0.8rem auto 0 auto;
  max-width: 650px;
}

@media screen and (min-width: 750px) {
  .contact-section__title {
    font-size: 38px;
  }
  .contact-section__desc {
    font-size: 16px;
  }
}

/* Split Columns Layout */
.contact-section__layout {
  display: flex;
  flex-direction: column; /* Mobile first stack */
  gap: 3rem;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 990px) {
  .contact-section__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 4.5rem;
  }
  
  .contact-section__form-card {
    flex: 0 0 58%; /* 58% Form on Left */
  }
  
  .contact-section__info {
    flex: 1 1 42%; /* 42% Info on Right */
  }
}

/* Left Contact Form Card */
.contact-section__form-card {
  width: 100%;
  background-color: #f8fafc; /* Subtle light grey card backdrop */
  border-radius: 16px;
  border: 1px solid rgba(0, 37, 89, 0.04);
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.01);
}

@media screen and (min-width: 750px) {
  .contact-section__form-card {
    padding: 2.5rem 3rem;
  }
}

/* Form Row (Side-by-side inputs on desktop) */
.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .contact-form__row {
    flex-direction: row;
  }
}

.contact-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Form Fields Input Styling */
.contact-form__input {
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-secondary);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-family-global);
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--color-primary); /* Teal */
  box-shadow: 0 0 0 3px rgba(7, 145, 166, 0.15);
}

.contact-form__input::placeholder {
  color: #94a3b8;
}

textarea.contact-form__input {
  min-height: 140px;
  resize: vertical;
}

/* Submit Button */
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary); /* Navy */
  color: var(--color-white);
  border: none;
  padding: 0.85rem 2.4rem;
  border-radius: 8px;
  font-family: var(--font-family-global);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.contact-form__submit:hover {
  background-color: var(--color-primary); /* Teal */
  transform: translateY(-1.5px);
  box-shadow: 0 6px 15px rgba(7, 145, 166, 0.2);
}

.contact-form__submit:active {
  transform: translateY(0);
}

/* Success / Error Message Banner alerts */
.contact-form__success {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 1rem;
  border-radius: 8px;
  font-family: var(--font-family-global);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.contact-form__error {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 1rem;
  border-radius: 8px;
  font-family: var(--font-family-global);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

/* Right Contact Info Column */
.contact-section__info {
  width: 100%;
  box-sizing: border-box;
}

.contact-section__info-title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .contact-section__info-title {
    font-size: 24px;
  }
}

.contact-section__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
}

/* Info Item Row */
.contact-section__info-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

/* Navy rounded square icon badges */
.contact-section__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: var(--color-secondary); /* Navy */
  color: var(--color-primary); /* Teal icon symbol */
  flex-shrink: 0;
  margin-right: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 37, 89, 0.08);
}

.contact-section__icon-wrapper svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.contact-section__info-details {
  flex: 1;
}

.contact-section__info-label {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}

.contact-section__info-value {
  font-family: var(--font-family-global);
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.contact-section__info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section__info-value a:hover {
  color: var(--color-primary); /* Teal hover */
}

@media screen and (min-width: 750px) {
  .contact-section__info-value {
    font-size: 15px;
  }
}


/* Safety & Precautions Section Styling */
.precaution-section {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-white);
}

.precaution-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Centered Top Header */
.precaution-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.precaution-section__subtitle {
  font-family: var(--font-family-global);
  color: var(--color-primary); /* Teal */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
  display: block;
}

.precaution-section__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .precaution-section__title {
    font-size: 38px;
  }
}

/* 3-Column Precaution Grid */
.precaution-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) and (max-width: 989px) {
  .precaution-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (min-width: 990px) {
  .precaution-section__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Precaution Cards */
.precaution-card {
  display: flex;
  align-items: center;
  background-color: #eef7f9; /* Soft light blue/teal backdrop card */
  border-radius: 14px;
  padding: 1.5rem 1.8rem;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(7, 145, 166, 0.01);
  transition: all 0.25s ease;
  width: 100%;
}

.precaution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(7, 145, 166, 0.06);
  background-color: #e4f3f6; /* Slightly darker shade on hover */
}

/* Icon Badge */
.precaution-card__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--color-secondary); /* Navy default line art */
  flex-shrink: 0;
  margin-right: 1.2rem;
  transition: transform 0.25s ease;
}

.precaution-card__icon-wrapper svg {
  width: 38px;
  height: 38px;
  display: block;
}

.precaution-card:hover .precaution-card__icon-wrapper {
  transform: scale(1.05);
}

/* Stylize dual-color icons */
.precaution-card__icon-wrapper .accent-path {
  color: var(--color-primary) !important; /* Primary Teal accents */
  fill: currentColor;
}

/* Card details text block */
.precaution-card__details {
  flex: 1;
}

.precaution-card__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}

.precaution-card__desc {
  font-family: var(--font-family-global);
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

@media screen and (min-width: 750px) {
  .precaution-card__title {
    font-size: 14.5px;
  }
  .precaution-card__desc {
    font-size: 13.5px;
  }
}


/* How to Use Video Grid Section Styling */
.video-grid-section {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-white);
}

.video-grid-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Centered Top Header */
.video-grid-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.video-grid-section__subtitle {
  font-family: var(--font-family-global);
  color: var(--color-primary); /* Teal */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
  display: block;
}

.video-grid-section__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .video-grid-section__title {
    font-size: 38px;
  }
}

/* 2-Column Grid Layout (exactly 2 videos per row on desktop/tablet) */
.video-grid-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .video-grid-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Video Player Card */
.video-card {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 37, 89, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 37, 89, 0.07);
  border-color: rgba(7, 145, 166, 0.2); /* Teal border fade on hover */
}

/* 16:9 widescreen player aspect ratio wrapper */
.video-card__player-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background-color: #000000;
}

.video-card__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Video Information Blocks under the video */
.video-card__details {
  padding: 1.2rem 1.4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-card__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.video-card__desc {
  font-family: var(--font-family-global);
  color: #475569;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

@media screen and (min-width: 750px) {
  .video-card__title {
    font-size: 17px;
  }
  .video-card__desc {
    font-size: 14.5px;
  }
}



/* Custom Collection Grid Section Styling */
.col-grid-section {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-white);
}

.col-grid-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Centered Top Header */
.col-grid-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.col-grid-section__subtitle {
  font-family: var(--font-family-global);
  color: var(--color-primary); /* Teal */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
  display: block;
}

.col-grid-section__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .col-grid-section__title {
    font-size: 38px;
  }
}

/* Collection Grid Columns */
.col-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row on Mobile */
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .col-grid-section__grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row on Tablet */
    gap: 1.5rem;
  }
}

@media screen and (min-width: 990px) {
  .col-grid-section__grid {
    grid-template-columns: repeat(4, 1fr); /* 4 per row on Desktop */
    gap: 1.8rem;
  }
}

/* Product Card */
.col-prod-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 37, 89, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 100%;
}

.col-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 37, 89, 0.06);
  border-color: rgba(7, 145, 166, 0.15); /* Primary Teal highlight */
}

/* Product Image Wrapper (strictly square 1:1 format) */
.col-prod-card__media {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Square aspect ratio */
  overflow: hidden;
  background-color: #f8fafc;
}

.col-prod-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-prod-card:hover .col-prod-card__image {
  transform: scale(1.04);
}

/* Circular Sale Badge calculation */
.col-prod-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #002559; /* Teal */
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(7, 145, 166, 0.25);
  pointer-events: none;
}

.col-prod-card__badge-pct {
  font-family: var(--font-family-global);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.col-prod-card__badge-lbl {
  font-family: var(--font-family-global);
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Hover Action Overlays (Desktop Only) */
.col-prod-card__overlay {
  display: none; /* Hide on mobile by default */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 37, 89, 0.3); /* Navy overlay screen */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 4;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

@media screen and (min-width: 990px) {
  .col-prod-card__overlay {
    display: flex;
  }
  .col-prod-card:hover .col-prod-card__overlay {
    opacity: 1;
  }
}

/* Overlay Buttons */
.col-prod-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-global);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  width: 78%;
  box-sizing: border-box;
  transition: all 0.2s ease;
  line-height: 1;
}

.col-prod-card__btn-atc {
  background-color: var(--color-secondary); /* Navy */
  color: var(--color-white);
}

.col-prod-card__btn-atc:hover {
  background-color: var(--color-primary); /* Teal */
  transform: translateY(-1px);
}

.col-prod-card__btn-qv {
  background-color: var(--color-primary); /* Teal */
  color: var(--color-white);
}

.col-prod-card__btn-qv:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* Mobile Actions Row (Visible below card on mobile viewports) */
.col-prod-card__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0.8rem 0.8rem 0.8rem;
  box-sizing: border-box;
}

.col-prod-card__mobile-actions .col-prod-card__btn {
  width: 100%;
  font-size: 10px;
  padding: 8px 10px;
}

@media screen and (min-width: 990px) {
  .col-prod-card__mobile-actions {
    display: none; /* Hide on desktop */
  }
}

/* Card content details */
.col-prod-card__details {
  padding: 0.8rem 0.8rem 0.6rem 0.8rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.col-prod-card__title {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  text-decoration: none;
  text-align: left;
  flex-grow: 1;
  transition: color 0.2s ease;
}

.col-prod-card__title:hover {
  color: var(--color-primary); /* Teal hover */
}

/* Price Block spacing */
.col-prod-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.col-prod-card__price-compare {
  font-family: var(--font-family-global);
  color: #94a3b8;
  font-size: 11px;
  text-decoration: line-through;
}

.col-prod-card__price-current {
  font-family: var(--font-family-global);
  color: var(--color-secondary); /* Navy */
  font-size: 14.5px;
  font-weight: 800;
}

@media screen and (min-width: 750px) {
  .col-prod-card__details {
    padding: 1rem 1rem 0.8rem 1rem;
  }
  .col-prod-card__title {
    font-size: 14.5px;
  }
  .col-prod-card__price-row {
    gap: 8px;
  }
  .col-prod-card__price-compare {
    font-size: 12.5px;
  }
  .col-prod-card__price-current {
    font-size: 16px;
  }
}

.section-header.shopify-section-group-header-group{z-index:9999 !important;}



/* Mobile Bottom Navigation Bar Styling */
.mob-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-white);
  border-top: 1px solid rgba(0, 37, 89, 0.08);
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: env(safe-area-inset-bottom); /* Auto lift on notched iPhones */
  height: calc(58px + env(safe-area-inset-bottom));
}

/* Hide on Desktop viewport */
@media screen and (min-width: 750px) {
  .mob-nav-bar {
    display: none !important;
  }
}

/* Push body layout up on mobile viewports to prevent fixed overlaps */
@media screen and (max-width: 749px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom)) !important;
  }
}

/* Grid Navigation Items */
.mob-nav-bar__item {
  flex: 1;
  height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #475569;
  border-right: 1px solid rgba(0, 37, 89, 0.06); /* Vertical divider */
  box-sizing: border-box;
  padding: 6px 0;
  transition: background-color 0.2s ease;
}

.mob-nav-bar__item:last-child {
  border-right: none; /* Strip trailing divider */
}

.mob-nav-bar__item:active {
  background-color: #f8fafc; /* Press state feedback */
}

/* Icon block */
.mob-nav-bar__icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  color: #64748b; /* Muted gray icon default */
  transition: color 0.2s ease;
}

.mob-nav-bar__icon-wrapper svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  display: block;
}

/* Label captions */
.mob-nav-bar__label {
  font-family: var(--font-family-global);
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: color 0.2s ease;
}

/* Active Highlight state styles */
.mob-nav-bar__item:hover .mob-nav-bar__icon-wrapper,
.mob-nav-bar__item:hover .mob-nav-bar__label {
  color: var(--color-primary); /* Teal highlight */
}

/* Cart Quantity Badge bubble overlay */
.mob-nav-bar__badge {
  position: absolute;
  top: -4px;
  right: -8px;
  z-index: 2;
  background-color: #ef4444; /* Dynamic warning red */
  color: var(--color-white);
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-global);
  font-size: 8px;
  font-weight: 800;
  padding: 0 3px;
  box-shadow: 0 2px 5px rgba(239, 68, 68, 0.4);
  pointer-events: none;
}

.mob-nav-bar__badge.hidden, .slideshow__text-wrapper.banner__content {
  display: none !important;
}

.shopify-app-block.mp-tiktok-feed{
  padding: 8% 0;
}

.product__title h1{
  font-size: 2.5rem;
}