@font-face {
  font-family: "Libre Franklin";
  src: url("../fonts/LibreFranklin-Regular.woff2") format("woff2"),
       url("../fonts/LibreFranklin-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* === fkat Global Styles === */
:root {
  --fkat-primary: #2874f0;
  --fkat-accent: #ffd700;
  --fkat-dark: #222;
  --fkat-light: #f8f9fa;
  --fkat-font: "Segoe UI", sans-serif;
  --fkat-border: #ddd;
  --fkat-muted: #6c757d;
  --fkat-primary-font: "Libre Franklin";
  --fkat-border-grey: #ccc;
  --fkat-nav-hover: #1e5fcc;

  --banner-bg-one: #EBFFE8; 
  --banner-shape-one: #AAFF9D;
  --banner-bg-two: #FFEECE;
  --banner-shape-two: #FFCC6F;
  --banner-bg-three: #D5EBFF;
  --banner-shape-three: #359FFF;
  --banner-bg-four: #f8e3c8;
  --banner-shape-four: #ffa735;
  --banner-bg-five: #f8e3c8;
  --banner-shape-five: #24b8cc;
  --radius-20: 20px;
  --title-color: /* your color */;
  --text-color: /* your color */;

  --term-bg: #f5f6fa;
  --term-surface: #ffffff;
  --term-surface-2: #f0f2f8;
  --term-primary: #0077b6;
  --term-accent: #59c173;
  --term-text: #2d3142;
  --term-text-dim: #6c7a89;
  --term-border: #d6d9e6;
  --term-focus: rgba(89, 193, 115, 0.4);
  --term-danger: #d62828;
  --term-warning: #f4a261;
  --term-ok: #4caf50;
  --term-shadow: 0 10px 30px rgba(0,0,0,.08);
  --term-radius: 18px;
  --term-radius-sm: 12px;
  --term-radius-lg: 28px;
  --term-gap: 16px;
  --term-maxw: 1200px;

  --bg-grey: #f5f6fa;

  --aboutv3-primary: #ff6b00;
  --aboutv3-secondary: #ffcc00;
  --aboutv3-dark: #1a1a1a;
  --aboutv3-light: #f8f8f8;
  --aboutv3-gray: #444;
  --aboutv3-transition: all 0.3s ease;

  --ticker-speed: 120s;        /* number of ticker items */
}

.section-grey { background-color:var(--bg-grey); }
h1.section-heading { font-size: 20px; }
h2.section-heading { font-size: 20px; }

body {
  font-family: var(--fkat-primary-font);
  background-color: white;
  color: var(--fkat-dark);
}

.primaryFont {
  font-family: var(--fkat-primary-font);
}

/* === General === */
.mb-minus-24 {
  margin-bottom: -24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.m-b-24 {
  margin-bottom: 24px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.p-tb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

img, svg {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.text-capitalize {
  text-transform: capitalize;
}

/* === Topbar === */
.topbar {
  background-color: var(--fkat-light);
  border-bottom: 1px solid var(--fkat-border);
  font-size: 13px;
  padding: 0.5rem 0;
}

/* === Header === */
.main-header {
  background-color: var(--fkat-primary);
  color: white;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* === Search === */
.search-btn {
  background-color: var(--fkat-accent);
  border: none;
  color: black;
}

.input-group .form-select {
  max-width: 180px;
}

/* === Category Dropdown === */
.category-dropdown {
  font-family: var(--fkat-primary-font);
  position: relative;
}

.category-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  max-height: 400px; /* Adjust as needed */
  overflow-y: auto;
  background-color: white;
  border: 1px solid var(--fkat-border);
  z-index: 999;
  display: none;
}

.category-menu {
  display: none;
}
.category-menu.show {
  display: block;
}

.category-dropdown:hover .category-menu {
  display: block;
}

.category-menu a {
  font-family: var(--fkat-primary-font);
  display: block;
  padding: 10px 15px;
  color: var(--fkat-dark);
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.category-menu a:hover {
  background-color: var(--fkat-light);
}

/* === Cart === */
.cart-badge {
  background-color: var(--fkat-accent);
  color: #000;
  font-size: 12px;
  border-radius: 50%;
  padding: 0 5px;
  position: absolute;
  top: -8px;
  right: -10px;
}

/* === Navbar === */
.nav-menu {
  background-color: #e5e5e5;
  border-top: 1px solid var(--fkat-border);
}

.navbar-nav {
  display: flex;
  gap: 25px; /* Spacing between menu items */
  align-items: center;
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0 10px;
}

.navbar-nav .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  height: 40%;
  width: 1px;
  background-color: var(--fkat-border-grey); /* Grey line */
}

.navbar-nav .nav-link {
  color: var(--fkat-dark);
  font-family: var(--fkat-primary-font);
  font-weight: 600;
  padding: 5px 0;
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: var(--fkat-primary);
}

/* === Mobile View === */
@media (max-width: 767px) {
  .desktop-header {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile-header {
    display: none !important;
  }
}

/* === Buttons === */
.btn-fkat {
  background-color: var(--fkat-primary);
  color: white;
  border: none;
}

.btn-fkat:hover {
  background-color: var(--fkat-nav-hover);
}

/* === Utility === */
.text-accent {
  color: var(--fkat-accent);
}

.bg-accent {
  background-color: var(--fkat-accent);
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Separator line */
.vertical-separator {
  width: 1px;
  height: 40px;
  background-color: var(--fkat-border-grey);
  margin: 0 1rem;
}

/* Ensure spacing between search and cart */
.search-wrapper {
  flex-grow: 1;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Search box styling */
.input-group > input {
  flex: 1 1 auto;
}

/* Responsive spacing adjustments */
@media (max-width: 768px) {
  .vertical-separator {
    display: none;
  }
}

/* Vertical line between elements */
.divider-vertical {
  border-left: 1px solid var(--fkat-border-grey);
  height: 40px;
  margin: 0 10px;
}

/* Fix spacing between search and cart */
.search-group-wrapper {
  flex-grow: 1;
  margin-right: 20px;
}

#mobileNav .list-group-item a {
  text-decoration: none;
  color: #000;
}

#mobileNav .list-group-item a:hover {
  color: #d63031;
}

.offcanvas {
  background-color: #f8f9fa;
}

.offcanvas .list-group-item a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.offcanvas .list-group-item a:hover {
  color: #d63031;
}

#heroCarousel {
  margin-top: 0;
  overflow: hidden;
}

#heroCarousel .carousel-item img {
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  #heroCarousel .carousel-item img {
    height: 250px;
  }
}

/* .shadow-sm:hover {
  transform: scale(1.03);
  transition: all 0.2s ease-in-out;
}

.scroll-container {
  scroll-behavior: smooth;
}
.category-card {
  width: 120px;
} */

.category-wrapper {
  position: relative;
  z-index: 1;
}
.category-card {
  width: 16.66%; /* 100% / 6 = 16.66% */
  min-width: 120px; /* Ensures good mobile look */
}
.scroll-container {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

#categoryScroll {
  scroll-behavior: smooth;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none; /* IE */
  scrollbar-width: none; /* Firefox */
}

#categoryScroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.category-card {
  width: 200px; /* Adjust width for 4 visible at once */
}

.scroll-container {
  cursor: grab;
}

.scroll-container:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .category-card {
    width: 33.33%;
  }
}
@media (max-width: 576px) {
  .category-card {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .scroll-container {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}

#categoryScroll.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

#categoryScrollBox {
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

#categoryScrollBox::-webkit-scrollbar {
  display: none; /* Chrome */
}

.category-card {
  width: 200px;
  scroll-snap-align: start;
}

.scroll-snap {
  scroll-snap-type: x mandatory;
}

@media (max-width: 768px) {
  .category-card {
    width: 150px;
  }
}

.btn-primary {
  background-color: #ff5722;
  border-color: #ff5722;
}
.btn-primary:hover {
  background-color: #e64a19;
  border-color: #e64a19;
}

#scrollLeft,
#scrollRight {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.giftbox-scroll-container {
  overflow: hidden;
}

.giftbox-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.giftbox-scroll::-webkit-scrollbar {
  display: none;
}

.giftbox-card {
  width: 350px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.giftbox-left {
  width: 60%;
}

.giftbox-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.scroll-box {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}
.scroll-box::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.how-to-order {
  padding: 50px 0;
}

.how-to-order h2 {
  text-align: left;
  color: #000;
  margin-bottom: 5px;
  font-weight: bold;
}

.step-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: #3f51b5;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

section.how-to-order { padding: 50px 0 75px 0;}

#productFamilySection { padding: 50px 0 75px 0; }

/** === Banner Component === **/
.bg-box-color-one {
  background-color: var(--banner-bg-one);
  position: relative;
}

.bg-box-color-one::before,
.bg-box-color-one::after {
  background-color: var(--banner-shape-one);
}

.bg-box-color-two {
  background-color: var(--banner-bg-two);
  position: relative;
}

.bg-box-color-two::before,
.bg-box-color-two::after {
  background-color: var(--banner-shape-two);
}

.bg-box-color-three {
  background-color: var(--banner-bg-three);
  position: relative;
}

.bg-box-color-three::before,
.bg-box-color-three::after {
  background-color: var(--banner-shape-three);
}

.bg-box-color-four {
  background-color: var(--banner-bg-four);
  position: relative;
}

.bg-box-color-four::before,
.bg-box-color-four::after {
  background-color: var(--banner-shape-four);
}

.bg-box-color-five {
  background-color: var(--banner-bg-five);
  position: relative;
}

.bg-box-color-five::before,
.bg-box-color-five::after {
  background-color: var(--banner-shape-five);
}

.banner-box {
  padding: 30px;
  border-radius: var(--radius-20);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.banner-box:hover::before {
  left: -210px;
  top: -210px;
}

.banner-box:hover::after {
  right: -80px;
  bottom: -110px;
}

.banner-box::before {
  content: "";
  width: 400px;
  height: 600px;
  position: absolute;
  left: -200px;
  top: -200px;
  rotate: 40deg;
  z-index: 0;
  transition: all 0.3s ease;
}

.banner-box::after {
  content: "";
  width: 150px;
  height: 300px;
  position: absolute;
  right: -70px;
  bottom: -100px;
  rotate: 40deg;
  z-index: 0;
  transition: all 0.3s ease;
}

.banner-box .inner-banner-box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.banner-box .inner-banner-box .side-image {
  padding: 0 12px;
  display: flex;
  align-items: center;
}

.banner-box .inner-banner-box .side-image img {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

.banner-box .inner-banner-box .inner-contact {
  max-width: 300px;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner-box .inner-banner-box .inner-contact h5 {
  margin-bottom: 15px;
  font-size: 31px;
  font-weight: bold;
  color: var(--title-color);
}

.banner-box .inner-banner-box .inner-contact h3 {
  margin-bottom: 15px;
  font-size: 31px;
  font-weight: bold;
  color: var(--title-color);
}

.banner-box .inner-banner-box .inner-contact p {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-color);
}

.banner-box .inner-banner-box .inner-contact a {
  padding: 5px 15px;
}

/** === Button === **/
.bb-btn-1 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #3d4750;
  background: transparent;
  border-radius: 10px;
  border: 1px solid #3d4750;
}

/** === Responsive Styles === **/

/* Large desktops (1399px and down) */
@media (max-width: 1399px) {
  .banner-box .inner-banner-box .side-image img {
      width: 230px;
      height: 230px;
  }
}

/* Desktops (1199px and down) */
@media (max-width: 1199px) {
  .banner-box::before,
  .banner-box::after {
      opacity: 0.5;
  }
  
  .banner-box .inner-banner-box .side-image img {
      width: 140px;
      height: 140px;
  }
}

/* Tablets (991px and down) */
@media (max-width: 991px) {
  .banner-box .inner-banner-box .side-image img {
      width: 280px;
      height: 280px;
  }
  
  .banner-box .inner-banner-box .inner-contact h5 {
      font-size: 28px;
  }
}

/* Small tablets (767px and down) */
@media (max-width: 767px) {
  .banner-box .inner-banner-box .side-image img {
      width: 200px;
      height: 200px;
  }
  
  .banner-box::before {
      left: -300px;
  }
  
  .banner-box::after {
      right: -100px;
  }
  
  .banner-box:hover::before {
      left: -310px;
  }
  
  .banner-box:hover::after {
      right: -110px;
  }
}

/* Mobile (575px and down) */
@media (max-width: 575px) {
  .banner-box .inner-banner-box .side-image img {
      width: 100%;
      height: auto;
  }
  
  .banner-box .inner-banner-box .inner-contact h5 {
      font-size: 24px;
  }
}

/* Small mobile (480px and down) */
@media (max-width: 480px) {
  .banner-box .inner-banner-box {
      flex-direction: column;
  }
  
  .banner-box .inner-banner-box .side-image {
      padding: 0;
      margin-bottom: 12px;
      justify-content: center;
  }
  
  .banner-box .inner-banner-box .side-image img {
      width: calc(100% - 70px);
  }
  
  .banner-box .inner-banner-box .inner-contact {
      padding: 0;
      max-width: 100%;
      text-align: center;
      align-items: center;
  }
  
  .banner-box .inner-banner-box .inner-contact h5 {
      margin-bottom: 2px;
      font-size: 22px;
  }
  
  .banner-box .inner-banner-box .inner-contact p {
      margin-bottom: 8px;
      font-size: 14px;
  }
}

/**  Footer  **/
footer.sb-hide {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  width: calc(100% - 300px);
  padding: 0 30px 0 30px;
}

footer {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  width: 100%;
  margin: 0 auto 0 auto;
  
}

.mn-footer {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding: 30px;
  color: #fff;
  background-color: #181e28;
  position: relative;
  border-radius: 15px 15px 0 0;
}
.mn-footer .footer-top .mn-footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mn-footer .footer-top .mn-footer-company .mn-app-store {
  margin: -7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-logo {
  max-width: 144px;
  margin-bottom: 30px;
  display: none;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-dark-logo {
  max-width: 144px;
  margin-bottom: 30px;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-detail {
  max-width: 400px;
  margin-bottom: 30px;
  padding: 0;
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  color: #7b8592;
  display: inline-block;
  position: relative;
}
.mn-footer .footer-top .mn-footer-widget .app-img img {
  max-width: 140px;
  margin: 7px;
  border-radius: 10px;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #b9c2d0;
  letter-spacing: 0;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 15px;
  text-transform: capitalize;
  border-bottom: 1px dashed #293343;
}
.mn-footer .footer-top .mn-footer-widget .s-head {
  display: none;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-links ul {
  margin-bottom: 0;
  padding: 0;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-links i {
  line-height: 0;
  font-size: 18px;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-links .mn-footer-link {
  display: block;
  margin: 0;
  line-height: 1.5;
  border: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  color: #7b8592;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-links .mn-footer-link:not(:last-child) {
  margin-bottom: 16px;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-links .mn-footer-link a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  color: #7b8592;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  word-break: break-all;
  letter-spacing: 0;
  font-weight: 400;
}
.mn-footer .footer-top .mn-footer-widget .mn-footer-links .mn-footer-link a:hover {
  color: #ffd783;
  opacity: 1;
}
.mn-footer .footer-top .mn-footer-contact .mn-footer-widget .mn-footer-links li:first-child {
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}
.mn-footer .footer-top .mn-footer-contact .mn-footer-widget .mn-footer-links li p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #7b8592;
}
.mn-footer .footer-top .mn-footer-contact .mn-footer-widget .mn-footer-links a {
  text-transform: unset;
}
.mn-footer .footer-top .mn-footer-contact .mn-footer-widget .mn-footer-links .mn-footer-link span {
  width: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mn-footer .footer-top .mn-footer-contact .mn-footer-widget .mn-footer-links .mn-footer-link .mt-15px {
  margin-top: 15px;
}
.mn-footer .footer-top .mn-footer-social {
  margin-bottom: 0;
}
.mn-footer .footer-top .mn-footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mn-footer .footer-top .mn-footer-social .mn-footer-widget .mn-footer-links .mn-footer-link {
  padding-right: 5px;
}
.mn-footer .footer-top .mn-footer-social .mn-footer-widget .mn-footer-links .mn-footer-link:not(:last-child) {
  margin-bottom: 0;
}
.mn-footer .footer-top .mn-footer-social .mn-footer-widget .mn-footer-links .mn-footer-link a {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-color: #4b5966;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
}
.mn-footer .footer-top .mn-footer-social .mn-footer-widget .mn-footer-links .mn-footer-link a:hover {
  background-color: #ffd783;
}
.mn-footer .footer-top .mn-footer-social .mn-footer-widget .mn-footer-links .mn-footer-link a:hover i {
  color: #313b50;
}
.mn-footer .footer-top .mn-footer-social .mn-footer-widget .mn-footer-links .mn-footer-link a i {
  font-size: 16px;
  color: #fff;
}

.mn-footer-contact {
  margin-bottom: 30px;
}

.footer-bottom {
  padding: 10px 0;
  border-top: 1px solid #293343;
}
.footer-bottom .mn-bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-bottom .mn-copy {
  color: #7b8592;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 400;
}
.footer-bottom .mn-copy a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  color: #ffd783;
}
.footer-bottom .mn-copy .site-name:hover {
  color: #ffd783;
}

.mn-heading-res {
  display: none;
}

/* Responsive footer css */
@media only screen and (max-width: 1399px) {
  footer {
    padding: 0;
  }
  footer.sb-hide {
    width: 100%;
    padding: 0;
  }
  .mn-footer {
    border-radius: 0;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-links .mn-footer-link a {
    font-size: 15px;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-links li p {
    font-size: 15px;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-detail {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .mn-footer:before {
    width: 30px;
    height: 30px;
    top: -30px;
    background-image: url("../img/footer/1.png");
    background-size: 30px;
  }
  .mn-footer:after {
    width: 30px;
    height: 30px;
    top: -30px;
    background-image: url("../img/footer/1.png");
    background-size: 30px;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-links .mn-footer-link a {
    font-size: 14px;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-links li p {
    font-size: 14px;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-detail {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) {
  .mn-footer .footer-top .mn-footer-widget .mn-footer-dropdown {
    display: block !important;
  }
}
@media screen and (max-width: 991px) {
  .mn-footer {
    padding: 0 15px;
  }
  .mn-footer:before {
    width: 15px;
    height: 15px;
    top: -15px;
    background-image: url("../img/footer/1.png");
    background-size: 15px;
  }
  .mn-footer:after {
    width: 15px;
    height: 15px;
    top: -15px;
    background-image: url("../img/footer/1.png");
    background-size: 15px;
  }
  .mn-footer .footer-top .mn-footer-company {
    margin-bottom: 30px;
  }
  .mn-footer .footer-top .container > .row {
    padding: 0;
  }
  .mn-footer .footer-top .mn-footer-widget .s-head {
    display: block;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-dark-logo, .mn-footer .footer-top .mn-footer-widget .mn-footer-logo {
    width: 140px;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-heading {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-links ul {
    margin-bottom: 15px;
  }
  .mn-footer .footer-top .mn-footer-widget .mn-footer-links .mn-footer-link:not(:last-child) {
    margin-bottom: 15px;
  }
  .mn-footer .footer-top .col-sm-12.col-lg-3 {
    width: 100%;
    margin-bottom: 0;
  }
  .mn-footer .footer-top .mn-footer-contact .mn-footer-widget .mn-footer-heading {
    margin-bottom: 15px;
  }
  .mn-footer-contact {
    margin-bottom: 0;
  }
  .footer-news-title {
    font-size: 20px;
  }
  .mn-subscribe-form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58%;
            flex: 0 0 58%;
  }
  .mn-heading-res {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: block;
    text-align: right;
  }
  .mn-footer-links.mn-footer-dropdown {
    display: none;
  }
  .footer-bottom-copy {
    text-align: center;
  }
  .footer-bottom {
    padding: 15px 0;
  }
  .footer-bottom .col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .footer-bottom .mn-bottom-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-bottom .mn-bottom-info .footer-copy {
    margin-bottom: 15px;
  }
  .col.footer-bottom-right {
    margin: 15px auto;
  }
  .footer-bottom-payment.d-flex.justify-content-end {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .m-minus-991 {
    margin-bottom: -15px;
  }
}
@media (max-width: 767px) {
  .mn-footer .footer-top .mn-footer-widget .mn-footer-dark-logo, .mn-footer .footer-top .mn-footer-widget .mn-footer-logo {
    max-width: 130px;
  }
}
@media (max-width: 575px) {
  .mn-footer .footer-top .mn-footer-widget .mn-footer-dark-logo, .mn-footer .footer-top .mn-footer-widget .mn-footer-logo {
    max-width: 120px;
  }
}
@media (max-width: 360px) {
  .footer-bottom .mn-bottom-info .footer-bottom-right img {
    width: 100%;
  }
}

/** Product Page **/
/* Breadcrumb */
.section-breadcrumb {
  border-bottom: 1px solid #eee; /* $border-eee */
  background-color: #f9f9f9;     /* $bg-box */
}

.bb-breadcrumb-inner {
  margin: 0;
  padding: 20px 0;
  align-items: center;
}

.bb-breadcrumb-inner h2.bb-breadcrumb-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 -5px;
  display: flex;
  justify-content: flex-start;
}

.bb-breadcrumb-inner .bb-breadcrumb-list {
  margin: 0 -5px;
  display: flex;
  justify-content: flex-end;
}

.bb-breadcrumb-inner .bb-breadcrumb-list li {
  padding: 0 5px;
  font-size: 14px;
  font-weight: 400;
}

.bb-breadcrumb-inner .bb-breadcrumb-list li i {
  font-size: 14px;
  font-weight: 600;
}

.bb-breadcrumb-inner .bb-breadcrumb-list li a {
  font-size: 14px;
  font-weight: 600;
  color: #666; /* $text-color */
}

/* Responsive */
@media screen and (max-width: 767px) {
  .bb-breadcrumb-inner h2.bb-breadcrumb-title {
      text-align: center;
      margin-bottom: 10px;
  }

  .bb-breadcrumb-inner .bb-breadcrumb-list {
      justify-content: center;
  }
}

.category-list-card {
  background-color: rgb(226, 225, 225);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  max-width: 350px;
}

.category-list-card h2 {
  font-size: 18px;
  padding: 15px 15px;
  text-align: center;
  color: #FFF;
  background: #000;
  border-radius: .5rem;
  transition: all 0.3s ease;
}

.category-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.category-scroll {
  max-height: 650px; /* Adjust this to your design */
  overflow-y: auto;
  padding-right: 5px;
}

.category-scroll::-webkit-scrollbar {
  width: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.list-group-item {
  background: transparent;
  padding: 10px 15px 10px 15px;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  border-bottom: 1px solid #c4c4c4 !important;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.list-group-item a{
  color: #333;
  text-decoration: none;
}

.list-group-item i {
  flex-shrink: 0;
}

.mn-product .owl-nav, .mn-related .owl-nav {
  position: absolute;
  top: -59px;
  right: 0;
}
.mn-product .owl-nav button, .mn-related .owl-nav button {
  height: 25px;
}
.mn-product .owl-nav button span, .mn-related .owl-nav button span {
  display: none;
}
.mn-product .owl-nav .owl-prev:after, .mn-related .owl-nav .owl-prev:after {
  content: "\ea64";
  top: 0;
  font-family: "remixicon";
}
.mn-product .owl-nav .owl-next, .mn-related .owl-nav .owl-next {
  margin-left: 5px;
}
.mn-product .owl-nav .owl-next:after, .mn-related .owl-nav .owl-next:after {
  content: "\ea6e";
  top: 0;
  font-family: "remixicon";
}
.mn-product .owl-dots, .mn-related .owl-dots {
  margin: -3px;
  position: absolute;
  top: -57px;
  right: 0;
}
.mn-product .owl-dots button, .mn-related .owl-dots button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 12px;
  height: 12px;
  margin: 3px;
  border: 1px solid #313b50;
  border-radius: 15px;
}
.mn-product .owl-dots button.active, .mn-related .owl-dots button.active {
  width: 25px;
  border-color: #3a4ee5;
  background-color: #3a4ee5;
}

.mn-product-card {
  padding: 15px;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #e5e5e5;
}
.mn-product-card:hover .mn-product-img .main-img {
  opacity: 0;
}
.mn-product-card:hover .mn-product-img .mn-img .mn-options {
  opacity: 1;
}
.mn-product-card .mn-product-img {
  margin-bottom: 15px;
  position: relative;
}
.mn-product-card .mn-product-img .lbl {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  font-size: 12px;
  text-align: center;
  z-index: 2;
}
.mn-product-card .mn-product-img .lbl .trending {
  color: #3a4ee5;
}
.mn-product-card .mn-product-img .lbl .new {
  color: #f90c4c;
}
.mn-product-card .mn-product-img .lbl .sale {
  color: #54d3c2;
}
.mn-product-card .mn-product-img .lbl span {
  padding: 0 5px;
  background-color: #fff;
  position: relative;
  text-transform: uppercase;
  font-size: 11px;
  border-radius: 0 0 5px 5px;
}
.mn-product-card .mn-product-img .lbl span:before {
  content: "";
  width: 18px;
  height: 15px;
  position: absolute;
  left: -16px;
  bottom: -8px;
  background-image: url("../img/product/bg/shape-2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.mn-product-card .mn-product-img .lbl span:after {
  content: "";
  width: 18px;
  height: 15px;
  position: absolute;
  right: -16px;
  bottom: -8px;
  background-image: url("../img/product/bg/shape-2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: translateY(-50%) scaleX(-1) rotate(180deg);
          transform: translateY(-50%) scaleX(-1) rotate(180deg);
}
.mn-product-card .mn-product-img .mn-img {
  position: relative;
  overflow: hidden;
}
.mn-product-card .mn-product-img .mn-img .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mn-product-card .mn-product-img .mn-img .mn-pro-loader {
  width: 50px;
  height: 50px;
  padding: 1px;
  border-radius: 50%;
  border: 1px dashed #3a4ee5;
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 55;
  opacity: 0;
  -webkit-animation: spinner-1 3s infinite linear;
          animation: spinner-1 3s infinite linear;
}
.mn-product-card .mn-product-img .mn-img .mn-options {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  opacity: 0;
  z-index: 5;
}
.mn-product-card .mn-product-img .mn-img .mn-options ul {
  margin: -5px;
  padding: 5px 10px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  position: relative;
}
.mn-product-card .mn-product-img .mn-img .mn-options ul:before {
  content: "";
  width: 18px;
  height: 15px;
  position: absolute;
  left: -16px;
  bottom: -1px;
  background-image: url("../img/product/bg/shape-1.png");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: translateY(-50%) rotate(270deg);
          transform: translateY(-50%) rotate(270deg);
}
.mn-product-card .mn-product-img .mn-img .mn-options ul:after {
  content: "";
  width: 18px;
  height: 15px;
  position: absolute;
  right: -18px;
  bottom: 5px;
  background-image: url("../img/product/bg/shape-1.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.mn-product-card .mn-product-img .mn-img .mn-options ul li {
  margin: 5px;
}
.mn-product-card .mn-product-img .mn-img .mn-options ul li a {
  line-height: 16px;
}
.mn-product-card .mn-product-img .mn-img .mn-options ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #313b50;
}
.mn-product-card .mn-product-img .mn-img .mn-options ul li a:hover i {
  color: #3a4ee5;
}
.mn-product-card .mn-product-img .mn-img .mn-options ul li a.active i {
  color: #3a4ee5;
}
.mn-product-card .mn-product-img .mn-img.pro-loading {
  position: relative;
}
.mn-product-card .mn-product-img .mn-img.pro-loading:before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  opacity: 0.8;
  z-index: 21;
}
.mn-product-card .mn-product-img .mn-img.pro-loading .mn-pro-loader {
  opacity: 1;
  display: block;
}
.mn-product-card .mn-product-img img {
  width: 100%;
  border-radius: 15px;
  background-color: #d8dce4;
  text-align: center;
  padding: 30px;
}
.mn-product-card .mn-product-img .main-img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.mn-product-card .mn-product-img .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.mn-product-card .mn-product-detail .cat {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mn-product-card .mn-product-detail .cat a {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #777;
}
.mn-product-card .mn-product-detail .cat a:hover {
  color: #3a4ee5;
}
.mn-product-card .mn-product-detail .cat ul {
  margin: 0 -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mn-product-card .mn-product-detail .cat ul li {
  margin: 0 2px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #777;
}
.mn-product-card .mn-product-detail h5 a {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: #313b50;
  font-family: var(--fkat-primary-font);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mn-product-card .mn-product-detail h5 a:hover {
  color: #3a4ee5;
}
.mn-product-card .mn-product-detail .mn-info {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
}
.mn-product-card .mn-product-detail .mn-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mn-product-card .mn-product-detail .mn-price .mn-price-new {
  margin-right: 10px;
  font-weight: 700;
}
.mn-product-card .mn-product-detail .mn-price .mn-price-old {
  text-decoration: line-through;
  color: #999;
}
.mn-product-card .mn-product-detail .mn-pro-option {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mn-product-card .mn-product-detail .mn-pro-option ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mn-product-card .mn-product-detail .mn-pro-option ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
  padding: 2px;
  display: inline-block;
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid #ddd;
  opacity: 0.8;
}
.mn-product-card .mn-product-detail .mn-pro-option ul li a {
  pointer-events: none;
  width: 20px;
  height: 20px;
  display: block;
  cursor: pointer;
}
.mn-product-card .mn-product-detail .mn-pro-option ul li span {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 30px;
}
.mn-product-card .mn-product-detail .mn-pro-option ul li.active {
  border: 1px solid #3a4ee5;
}
.mn-product-card .mn-product-detail .mn-wishlist {
  opacity: 0.8;
}
.mn-product-card .mn-product-detail .mn-wishlist i {
  color: #ddd;
  font-size: 20px;
  line-height: 16px;
}
.mn-product-card .mn-product-detail .mn-wishlist.active i {
  -webkit-animation: wishlist-active 0.5s 1;
          animation: wishlist-active 0.5s 1;
  color: #ffd783;
}
.mn-product-card .mn-product-detail .mn-wishlist.active i:before {
  content: "\ee0e";
}

@keyframes wishlist-active {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-webkit-keyframes wishlist-active {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/* Responsive product css */
@media only screen and (max-width: 575px) {
  .mn-product-card .mn-product-img .mn-img .mn-options {
    opacity: 1;
  }
}

.qty-box { margin-top: 10px; width: 100%; height: 100%; position: relative; top: 0; left: 0;  }
.qty-box .input-group { background-color: rgb(212, 209, 209, 0.2); box-shadow: 0 0 8px rgb(34 34 34 / 4%); -webkit-box-shadow: 0 0 8px rgb(34 34 34 / 4%); border-radius: 50px; padding: 4px; text-align: center; z-index: 0; } 

.qty-box .input-group input { padding: 0px; border: none; text-align: center; background-color: rgb(212, 209, 209, 0.2); -webkit-box-shadow: 0 0 8px rgb(34 34 34 / 4%); box-shadow: 0 0 8px rgb(34 34 34 / 4%); }
.qty-box .input-group span button { border: 0px solid #ced4da; height: 100%; }
.qty-box .input-group button { background-color: transparent; border: 0; color: #212529; cursor: pointer; font-size: 12px; font-weight: 900; line-height: 1; padding: 0px 20px; }

.hide { display: none !important; }
.show { display: block !important; }

.product-title { font-size: 1.8rem; font-weight: 600; margin-bottom: .75rem; }
.product-desc { color: #555; margin-bottom: 1rem; }

.price-section .price-new { font-size: 1.5rem; font-weight: 700; color: #e60023; }
.price-section .price-old { margin-left: .5rem; color: #999; text-decoration: line-through; }

.quantity-box { display: flex; gap: .5rem; align-items: center; }
.qty-input { width: 60px; border: 1px solid #ddd; }

.info-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.info-table th { background: #f8f9fa; font-size: 1.1rem; color: #333; padding: .75rem; }
.info-table td { border-top: 1px solid #e9ecef; padding: .65rem; color: #555; }

.product-thumb-carousel .item img {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: .25rem;
  transition: border .2s;
}
.product-thumb-carousel .item:hover img,
.product-thumb-carousel .item.active img {
  border-color: #e60023;
}

.image-thumb-wrapper { 
  border: 1px solid #686767;
  padding: 50px;
  border-radius: 25px;
}

.product-thumb-carousel .item { border: 1px solid #686767; }

#productInfo span.price-discount {
  font-size: 20px;
  color: #6c7fd8;
  padding: 0 0 0 15px;
  font-weight: bold;
}

#productInfo span.price-old {
  font-size: 20px;
  color: #070707;
  padding: 0 0 0 15px;
  font-weight: bold;
}

ul li.discountLabel { color: #f90c4c !important; font-weight: bold !important; }

.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  animation: zoomIn 0.4s ease-in-out;
}

.video-popup-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.close-popup {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  font-size: 24px;
  padding: 2px 10px;
  border-radius: 50%;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.bb-breadcrumb-item a { text-decoration: none; color: #1e5fcc !important; }
ul.bb-breadcrumb-list i{ color: darkgray; }

.term-container {
  max-width: var(--term-maxw);
  margin: 0 auto;
  /* padding: 24px; */
}

.term-hero {
  position: relative;
  margin: 24px auto 28px;
  padding: 28px clamp(18px, 3vw, 32px);
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 60%, #edf1f7 100%);
  border: 1px solid var(--term-border);
  border-radius: var(--term-radius-lg);
  box-shadow: var(--term-shadow);
  overflow: hidden;
  isolation: isolate;
}

.term-hero::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(700px 400px at 0% 0%, #0077b620 0, transparent 60%),
              radial-gradient(700px 400px at 100% 0%, #59c17320 0, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.term-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  font-size: 12px;
  color: #ffffff;
  background: linear-gradient(90deg, #0077b6, #59c173);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(0, 119, 182, .25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}


.term-title {
  margin: 14px 0 6px;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: .3px;
  font-weight: 800;
}

.term-subtitle {
  color: var(--term-text-dim);
  margin: 6px 0 16px;
  font-size: clamp(14px, 1.6vw, 16px);
}

.term-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--term-text-dim);
  font-size: 13px;
}

.term-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

/* Sidebar TOC */
.term-toc {
  position: sticky;
  top: 16px;
  align-self: start;
  background: var(--term-surface);
  border: 1px solid var(--term-border);
  border-radius: var(--term-radius);
  padding: 16px;
  box-shadow: var(--term-shadow);
}
.term-toc h3 { margin: 0 0 8px; font-size: 14px; color: var(--term-text-dim); text-transform: uppercase; letter-spacing: .6px; }
.term-toc a{
  display: block;
  padding: 10px 12px;
  margin: 4px 0;
  border-radius: 10px;
  color: var(--term-text);
  text-decoration: none;
  border: 1px solid transparent;
}
.term-toc a:hover{ background: var(--term-surface-2); border-color: var(--term-border); }

/* Cards / Sections */
.term-section {
  background: var(--term-surface);
  border: 1px solid var(--term-border);
  border-radius: var(--term-radius);
  padding: clamp(16px, 3vw, 24px);
  margin-bottom: 18px;
  box-shadow: var(--term-shadow);
}

.term-section h2, .term-section h3 { margin-top: 0; }
.term-section h2 { font-size: 22px; }
.term-section h3 { font-size: 18px; color: var(--term-text-dim); }

.term-list { margin: 0; padding-left: 18px; }
.term-list li { margin: 6px 0; }

/* Table */
.term-table-wrap{
  background: var(--term-surface-2);
  border: 1px solid var(--term-border);
  border-radius: var(--term-radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.term-table{ width: 100%; border-collapse: collapse; }
.term-table th, .term-table td{
  padding: 12px 14px;
  border-bottom: 1px solid var(--term-border);
  text-align: left;
}
.term-table th{ font-size: 13px; color: var(--term-text-dim); text-transform: uppercase; letter-spacing: .6px; }
.term-table tr:hover td{ background: #ffffff06; }
.term-table tr:last-child td{ border-bottom: none; }

/* Details / Accordion */
.term-details { border: 1px solid var(--term-border); border-radius: 12px; background: #ffffff06; overflow: hidden; }
.term-details + .term-details{ margin-top: 10px; }
.term-details summary{
  cursor: pointer;
  padding: 14px 16px;
  list-style: none;
  font-weight: 700;
  outline: none;
}
.term-details summary::-webkit-details-marker{ display: none; }
.term-details[open] summary{ background: #ffffff08; }
.term-details .term-details-body{ padding: 0 16px 16px; color: var(--term-text); }

/* Badges & Pills */
.term-pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid var(--term-border);
  color: var(--term-text-dim);
}

/* Footer note */
.term-note {
  font-size: 13px;
  color: var(--term-text-dim);
  margin-top: 2px;
}

/* Back to top */
.term-backtotop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--term-border);
  background: var(--term-surface);
  color: var(--term-text);
  text-decoration: none;
  box-shadow: var(--term-shadow);
  opacity: .9;
}
.term-backtotop:hover{ opacity: 1; }

/* Focus styles */
a:focus, button:focus, summary:focus { outline: 3px solid var(--term-focus); outline-offset: 2px; border-radius: 8px; }

/* Responsive */
@media (max-width: 980px){
  .term-grid { grid-template-columns: 1fr; }
  .term-toc { position: static; order: -1; }
}

/* Print */
@media print{
  body { background: #fff; color: #000; }
  .term-hero { box-shadow: none; border: none; background: #fff; }
  .term-toc, .term-backtotop { display: none !important; }
  .term-section, .term-table-wrap { box-shadow: none; border-color: #ddd; }
}

.aboutus-section {
  /* background: var(--term-bg); */
  color: var(--term-text);
  padding: 20px 20px 50px 20px;
}

.aboutus-container {
  max-width: var(--term-maxw);
  margin: auto;
}

.aboutus-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--term-primary);
  text-align: center;
}

.aboutus-title span {
  color: var(--term-accent);
}

.aboutus-intro {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--term-text-dim);
}

.aboutus-section-block {
  margin-top: 40px;
}

.aboutus-section-block h2 {
  color: var(--term-accent);
  margin-bottom: 15px;
}

.aboutus-checklist li,
.aboutus-bullets li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.aboutus-checklist li::before {
  content: "✔";
  color: var(--term-accent);
  position: absolute;
  left: 0;
}

.aboutus-bullets li::before {
  content: "•";
  color: var(--term-primary);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

.aboutus-values {
  padding-left: 20px;
}

.aboutus-values li {
  margin-bottom: 8px;
}

.aboutus-commitment {
  margin-top: 40px;
  padding: 20px;
  background: var(--term-surface-2);
  border-radius: var(--term-radius);
  box-shadow: var(--term-shadow);
}

.aboutus-highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--term-primary);
  margin-top: 10px;
}

.aboutus-ending {
  margin-top: 40px;
  text-align: center;
}


 /* Global Styles */
.aboutv3-body {
    line-height: 1.6;
    color: var(--aboutv3-dark);
    background-color: var(--aboutv3-light);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.aboutv3-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.aboutv3-section {
    padding: 80px 0;
}

.aboutv3-h2 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 2.2rem;
    color: var(--aboutv3-primary);
}

.aboutv3-p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.aboutv3-btn {
    display: inline-block;
    background: var(--aboutv3-primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--aboutv3-transition);
    text-decoration: none;
}

.aboutv3-btn:hover {
    background: var(--aboutv3-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.aboutv3-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Section 1 - About */
.aboutv3-section-1 {
    background-color: white;
}

.aboutv3-split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.aboutv3-split-section > div {
    flex: 1;
    min-width: 300px;
}

.aboutv3-image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.aboutv3-image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--aboutv3-transition);
}

.aboutv3-image-collage img:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

.aboutv3-image-collage img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Section 2 - Story */
.aboutv3-section-2 {
    background: linear-gradient(to right, #f8f8f8, #eeeeee);
}

/* Section 3 - Why Choose */
.aboutv3-section-3 {
    background-color: white;
}

.aboutv3-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.aboutv3-feature-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--aboutv3-transition);
}

.aboutv3-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.aboutv3-feature-item i {
    font-size: 2.5rem;
    color: var(--aboutv3-primary);
    margin-bottom: 15px;
}

.aboutv3-feature-item p { font-size: 1rem; }

/* Section 4 - Banner */
.aboutv3-section-4 {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.aboutv3-section-4 .aboutv3-h2 {
    color: var(--aboutv3-secondary);
}

/* Section 5 - Mission */
.aboutv3-section-5 {
    background: linear-gradient(to right, #f8f8f8, #eeeeee);
}

.aboutv3-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.aboutv3-value-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--aboutv3-transition);
}

.aboutv3-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.aboutv3-value-item i {
    font-size: 2.5rem;
    color: var(--aboutv3-primary);
    margin-bottom: 15px;
}

/* Section 6 - Commitment */
.aboutv3-section-6 {
    background: linear-gradient(to right, var(--aboutv3-primary), #ff8c00);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.aboutv3-section-6 .aboutv3-h2 {
    color: white;
}

/* Section 7 - Celebrate */
.aboutv3-section-7 {
    background: linear-gradient(to right, #2c2c2c, #1a1a1a);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.aboutv3-section-7 .aboutv3-h2 {
    color: var(--aboutv3-secondary);
}


/* Responsive Design */
@media (max-width: 768px) {
    .aboutv3-h2 {
        font-size: 1.8rem;
    }
    
    .aboutv3-split-section {
        flex-direction: column;
    }
    
    .aboutv3-image-collage {
        grid-template-columns: 1fr;
    }
    
    .aboutv3-image-collage img:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
}

.aboutv3-feature-item h3 { font-size: 1.2rem !important; }
.aboutv3-value-item h3 { font-size: 1.2rem !important; }

/* .mn-sec-product { padding: 24px 16px; }
  .mn-sec-product__container { max-width: 1200px; margin: 0 auto; }
  .mn-sec-product__title {
    font-size: 1.25rem; line-height: 1.3; margin: 0 0 16px 0; font-weight: 600;
  } */

/* ---- Product Gallery (prefixed) ---- */
.sec-product-gallery {
  background-color: #fdfdfd;
}

.sec-product-item img {
  transition: transform 0.3s ease;
  width: 100%;
  border-radius: 6px;
}

.sec-product-item img:hover {
  transform: scale(1.05);
}

.category-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.category-box img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

/* Overlay rectangle */
.category-overlay {
  position: absolute;
  bottom: 25px;            /* distance from top */
  right: 0;             /* align to right edge */
  width: 60%;           
  height: 40px;         
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;  /* ✅ text centered */
  text-align: center;
  border-radius: 12px 0 0 12px;
  transition: background 0.3s ease;
  padding: 0px 5px;
}

/* Hover effects */
.category-box:hover img {
  transform: scale(1.05);
}

.category-box:hover .category-overlay {
  background: rgba(0, 123, 255, 0.85); /* blue on hover */
}


.floating-img { position: fixed; bottom: 20px; right: 20px; width: 100px; 
    height: auto; cursor: pointer; animation: blink 1s infinite alternate; }
@keyframes blink { 0% { opacity: 1; } 100% { opacity: 0.3; } }

.about-v4-section {
  padding: 40px 20px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.about-v4-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.about-v4-container.reverse {
  flex-direction: row-reverse;
}

.about-v4-image-left,
.about-v4-image-right {
  flex: 1 1 40%;
  padding: 10px;
}

.about-v4-image-left img,
.about-v4-image-right img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-v4-content-right,
.about-v4-content-left {
  flex: 1 1 55%;
  padding: 10px;
}

.about-v4-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #d32f2f;
  font-weight: bold;
}

.about-v4-steps {
  list-style: decimal inside;
  padding-left: 0;
  margin: 0;
}

.about-v4-steps ul{
  list-style: circle inside;
  padding-left: 50px;
  margin: 0;
}

.about-v4-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.contact-v4-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #fff7f0, #ffe4e1);
}

.contact-v4-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contact-v4-title {
  font-size: 36px;
  color: #d32f2f;
  margin-bottom: 20px;
}

.contact-v4-intro {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-v4-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-v4-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-v4-subtitle {
  font-size: 20px;
  color: #c21807;
  margin-bottom: 10px;
}

.contact-v4-text,
.contact-v4-list,
.contact-v4-social {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-v4-list li,
.contact-v4-social li {
  margin-bottom: 5px;
}

.contact-v4-social a {
  color: #0077b5;
  text-decoration: none;
}

.contact-v4-social a:hover {
  text-decoration: underline;
}

.contact-v4-footer {
  font-size: 18px;
  font-weight: bold;
  color: #444;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  max-width: 100%;
  position: relative;
}

.ticker__list {
  display: inline-block;
  animation: ticker-scroll var(--ticker-speed) linear infinite;
}

.ticker__item {
  display: inline-block;
  margin-right: 3rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%); /* moves half (because we duplicated items) */
  }
}

#contactModal .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

#contactModal .modal-header {
  border-bottom: none;
}

#contactModal .modal-body ul li { padding: 10px 0; border-bottom: 1px solid #f1f1f1; }
#contactModal .modal-body ul li:last-child { border-bottom: none; }
#contactModal .modal-body ul li a { text-decoration: none; font-size: 1.05rem; font-weight: 500; color: #333; display: flex;   align-items: center; transition: color 0.2s ease; }
#contactModal .modal-body ul li a:hover {   color: #0d6efd; /* bootstrap primary */ }

.ticker-container {
  width: 100%;
  height: 50px;
  overflow: hidden;
  position: relative;
  background: #FFF;
  color: #000;
  display: flex;
  align-items: center;
}
.ticker-text {
  position: absolute;
  white-space: nowrap;
  font-size: 18px;
  will-change: transform;
}

.bgift-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.bgift-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  background: #f7f7f7;
  min-height: 200px;
}

.bgift-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bgift-img-card:hover .bgift-img {
  transform: scale(1.05);
}

/* darker overlay */
.bgift-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(0,0,0,0.65); /* darker */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 0 0 12px 12px;
}

.bgift-overlay-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .bgift-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bgift-image-grid {
    grid-template-columns: 1fr;
  }
  .bgift-overlay-text {
    font-size: 0.9rem;
  }
}

.bGiftBox { padding: 50px 0; }

.bgift-cta-banner {
  padding: 50px 0;
  width: 100%;
  background: var(--fkat-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Inner content */
.bgift-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Text area */
.bgift-cta-text {
  display: flex;
  flex-direction: column;
}

.bgift-cta-heading {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.bgift-cta-subtext {
  margin: 4px 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Button */
.bgift-cta-btn {
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fkat-primary);
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.bgift-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .bgift-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .bgift-cta-heading {
    font-size: 1.2rem;
  }
  .bgift-cta-subtext {
    font-size: 0.9rem;
  }
  .bgift-cta-btn {
    font-size: 1rem;
    padding: 10px 24px;
  }
}

.bggift { font-size: 40px; font-weight: bold; }

.paymentInfo-section {
  background-color: #f9f9f9;
  border-radius: 12px;
}

.paymentInfo-wrapper {
  max-width: 900px;
  margin: auto;
}

.paymentInfo-title {
  font-size: 2rem;
  color: #2c3e50;
}

.paymentInfo-intro {
  font-size: 1.1rem;
}

.paymentInfo-step {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-left: 4px solid #0d6efd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.paymentInfo-stepTitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0d6efd;
}

.paymentInfo-list {
  padding-left: 1rem;
  list-style: disc;
}

.paymentInfo-bank {
  background-color: #eef6ff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.paymentInfo-bank h5 {
  font-weight: 600;
  color: #0d6efd;
}

.paymentInfo-help {
  background-color: #fff3cd;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ffeeba;
}

.contact-v10-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.contact-v10-heading {
    text-align: center;
    margin-bottom: 40px;
}

.contact-v10-heading h1 {
    font-size: 2.5rem;
    color: #d43242;
    margin-bottom: 15px;
}

.contact-v10-heading p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-v10-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-v10-info {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-v10-info h2 {
    color: #d43242;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-v10-detail {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-v10-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: #d43242;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-v10-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.contact-v10-text p, .contact-v10-text a {
    margin: 0;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-v10-text a:hover {
    color: #d43242;
}

.contact-v10-social {
    margin-top: 30px;
}

.contact-v10-social h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-v10-social-icons {
    display: flex;
    gap: 15px;
}

.contact-v10-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d43242;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-v10-social-icons a:hover {
    background: #b02a37;
    transform: translateY(-3px);
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-v10-content {
        flex-direction: column;
    }
    
    .contact-v10-heading h1 {
        font-size: 2rem;
    }
}

.contact-v10-content h2, .contact-v10-content h3 { font-weight: bold; }

 /* How Order Section Styles */
  .howOrder-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
  }
  
  .howOrder-header {
      text-align: center;
      margin-bottom: 50px;
  }
  
  .howOrder-title {
      font-size: 2.5rem;
      color: #d43242;
      margin-bottom: 15px;
  }
  
  .howOrder-subtitle {
      font-size: 1.2rem;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
  }
  
  .howOrder-section {
      margin-bottom: 70px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .howOrder-section:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
  
  .howOrder-content-wrapper {
      display: flex;
      flex-wrap: wrap;
  }
  
  .howOrder-image-container {
      flex: 1;
      min-width: 300px;
      position: relative;
      overflow: hidden;
  }
  
  .howOrder-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
  }
  
  .howOrder-section:hover .howOrder-image {
      transform: scale(1.03);
  }
  
  .howOrder-content {
      flex: 1;
      min-width: 300px;
      padding: 35px;
  }
  
  .howOrder-section-title {
      font-size: 1.8rem;
      color: #d43242;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
  }
  
  .howOrder-section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: #d43242;
  }
  
  .howOrder-text {
      margin-bottom: 20px;
      color: #555;
      line-height: 1.7;
  }
  
  .howOrder-steps {
      margin-left: 20px;
      margin-bottom: 25px;
  }
  
  .howOrder-steps li {
      margin-bottom: 10px;
      line-height: 1.6;
  }
  
  .howOrder-steps ul {
      margin-top: 8px;
      margin-left: 20px;
      color: #666;
  }
  
  .howOrder-contact-info {
      background: #f9f9f9;
      padding: 15px 20px;
      border-radius: 8px;
      margin-top: 20px;
  }
  
  .howOrder-contact-info p {
      margin-bottom: 8px;
  }
  
  .howOrder-phone {
      color: #d43242;
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s;
  }
  
  .howOrder-phone:hover {
      color: #a82a36;
      text-decoration: underline;
  }
  
  /* Reverse layout for even sections */
  .howOrder-section:nth-child(even) .howOrder-content-wrapper {
      flex-direction: row-reverse;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .howOrder-title {
          font-size: 2rem;
      }
      
      .howOrder-subtitle {
          font-size: 1rem;
      }
      
      .howOrder-section-title {
          font-size: 1.5rem;
      }
      
      .howOrder-content {
          padding: 25px;
      }
      
      .howOrder-section:nth-child(even) .howOrder-content-wrapper,
      .howOrder-section .howOrder-content-wrapper {
          flex-direction: column;
      }
      
      .howOrder-image-container {
          min-height: 250px;
      }
  }
  
  @media (max-width: 480px) {
      .howOrder-container {
          padding: 30px 15px;
      }
      
      .howOrder-title {
          font-size: 1.8rem;
      }
      
      .howOrder-content {
          padding: 20px;
      }
      
      .howOrder-section-title {
          font-size: 1.4rem;
      }
  }
  
  /* Animation for sections */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .howOrder-section {
      animation: fadeInUp 0.6s ease forwards;
  }
  
  .howOrder-section:nth-child(2) {
      animation-delay: 0.2s;
  }
  
  .howOrder-section:nth-child(3) {
      animation-delay: 0.4s;
  }
  
  .howOrder-section:nth-child(4) {
      animation-delay: 0.6s;
  }