@font-face {
  font-family: "Inter Display";
  src: url("./fonts/InterDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("./fonts/InterDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("./fonts/InterDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("./fonts/InterDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary-color: #003d80;
  --primary-dark: #002a5a;
  --light-grey: #f8f9fa;
  --text-heading: #231f20;
  --text-body: #2d2d2d;
  --font-inter: "Inter Display", sans-serif;
  --accent-color: #2d2d2d;
}

body {
  font-family: var(--font-inter);
  color: var(--text-body);
  /* font-optical-sizing: auto; Removed for static TTF files */
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

/* Button and Card Accents */
.btn-primary,
.card-header,
.btn-custom {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #ffffff;
}

.btn-primary:hover,
.btn-custom:hover {
  background-color: #1a1a1a !important; /* Darker shade of #2D2D2D */
  border-color: #1a1a1a !important;
}

/* --- New Header & Hero Styles --- */

:root {
  --color-teal: #008b8b;
  --color-red: #ff0004;
  --color-border: #eeeeee;
  --color-hover-nav: #008b8b;
}

/* Top Bar */
.top-bar {
  background-color: var(--color-teal);
  color: #ffffff;
  padding: 15px 0;
}

.brand-logo {
  font-family: "Inter Display", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.search-container {
  max-width: 464px;
  height: 46px;
  width: 100%;
  position: unset !important;
  border-radius: 10px !important;
  padding: 10px;
}
.search-container input {
  /* border-radius: 4px 0 0 4px; Rounded left only */
  border: none;
  padding: 0 15px; /* Removed vertical padding to let height align centered if needed, or rely on flex */
  height: 100%;
}
.search-container button {
  border-radius: 0 4px 4px 0;
  border: none;
  background: #ffffff;
  color: var(--color-teal);
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.top-icons img {
  margin-left: 12px;
  text-decoration: none;
}
.badge-custom {
  position: absolute;
  top: -8px;
  right: -10px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 10px;
  padding: 2px 5px;
}

/* Main Navbar */
.main-nav {
  border-bottom: 1px solid var(--color-border);
  background: #ffffff;
  padding: 0;
}

.category-btn {
  background: transparent;
  border: none;
  color: var(--text-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}

.nav-links .nav-link {
  color: var(--text-heading);
  font-weight: 500;
  margin: 0 15px;
  padding: 15px 0;
  position: relative;
}
.nav-links .nav-link.active,
.nav-links .nav-link:hover {
  color: var(--color-hover-nav);
}
.nav-links .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-hover-nav);
}

.tracking-link {
  color: var(--color-red);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  font-size: 16px;
  align-items: center;
  gap: 5px;
}

/* Hero Section */
.hero-section {
  padding-top: 20px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 0px;
}

.sidebar-menu li {
  border-bottom: 1px solid var(--color-border);
}
.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-body);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.sidebar-menu li {
  position: relative;
}

.sidebar-submenu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 0;
  left: 100%; /* Push to the right of the sidebar */
  width: 250px; /* Adjust width as needed */
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  border-left: 1px solid #f0f0f0;
  padding: 10px 0;
  min-height: 100%;
}

.sidebar-menu li.active .sidebar-submenu {
  display: block;
}

/* Style for items inside submenu */
.sidebar-submenu a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-body);
}

.sidebar-submenu a:hover {
  color: var(--color-teal);
  background-color: #f9f9f9;
  padding-left: 25px;
}

/* Active State for Parent Link */
.sidebar-menu li.active > a {
  color: var(--color-teal);
  background-color: #f9f9f9;
  font-weight: 600;
}
.headersearchmain {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  border-radius: 10px !important;
}
.sidebar-menu a:hover {
  color: var(--color-hover-nav);
  background-color: #f9f9f9;
  padding-left: 25px; /* Slight movement effect */
}
.hjdsjbwhendkw {
  max-height: 507px;
  height: 100%;
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  max-height: 507px;

  /* Ensure it fills the height of the menu roughly */
  min-height: 507px;
}
.altcontainer {
  max-width: 1620px !important;
  width: 100% !important;
}

/* Mobile Navigation Styles */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -300px; /* Hidden by default */
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-nav-menu.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  backdrop-filter: blur(2px);
}

.mobile-nav-menu .nav-link {
  padding: 10px 0;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-dark);
}

.mobile-nav-menu .nav-link:last-child {
  border-bottom: none;
}
.form-control:focus {
  border: none;
  box-shadow: none;
}
.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active {
  color: var(--color-teal);
  padding-left: 10px;
  transition: all 0.2s;
}

@media (max-width: 1200px) {
  /* Adjustments for screens treated as mobile/tablet (below xl) */
  .top-bar {
    padding: 10px 0;
  }
  .main-logo {
    max-width: 140px; /* Reduce logo size */
  }
  .top-icons img {
    width: 24px; /* Slightly smaller icons */
    height: 24px;
  }
  .category-btn {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* Mobile Sidebar Overlay */
  .hero-section .row {
    position: relative; /* Anchor for absolute sidebar */
  }

  #sidebar-col {
    position: absolute;
    top: 0;
    left: 12px; /* Bootstrap gutter compensation (approx) or 0 if no padding */
    width: 179px;
    z-index: 105;
    background: #fff;
    padding-right: 0; /* Adjust as needed */
    padding-left: 0;
  }

  #sidebar-col.d-none {
    display: none !important;
  }

  /* Ensure banner stays full width on mobile even when sidebar is active */
  #banner-col {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .sidebar-menu {
    background: #fff;
    /* box-shadow: 2px 2px 10px rgba(0,0,0,0.1); Optional shadow for overlay */
  }

  .sidebar-submenu {
    width: 149px; /* Match sidebar width on mobile */
  }
}

/* Feature Cards Section */
.feature-card {
  background-color: var(--color-teal);
  height: 85px;
  border-radius: 8px;
  border: 1px solid #ebebeb; /* As requested, though background is teal */
  box-shadow: 0px 4px 9px 0px #5d5d5d0f;
  display: flex;
  align-items: center;
  padding: 0 34px; /* Desktop padding */
  gap: 15px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.feature-text h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.feature-text p {
  font-size: 12px;
  margin: 3px 0 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .feature-card {
    padding: 0 15px; /* Decrease padding on mobile/tablet */
  }
  .feature-text h6 {
    font-size: 11px;
  }
  .feature-text p {
    font-size: 10px;
  }
}
@media (max-width: 575px) {
  /* Ensure 2 items per row logic from bootstrap cols works, just tweak styling */
  .feature-card {
    padding: 0 10px;
    height: auto; /* Allow flexible height if content overflows */
    min-height: 85px;
    flex-direction: column; /* Stack vertically on very small screens if needed, or keep row */
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .feature-card img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1000px) {
  .hero-banner-img {
    min-height: 400px;
  }
  .logomainnav {
    width: 180px;
  }
  .top-icons img {
    margin-left: 0px;
    text-decoration: none;
  }
}
@media (max-width: 575px) {
  .logomainnav {
    width: 140px;
  }
  .category-btn img {
    width: 20px !important;
    height: 20px !important;
  }
  .category-btn {
    gap: 5px;
    font-size: 13px;
    padding: 12px 1px;
  }
  .tracking-link {
    font-size: 13px;
  }
  .tracking-link img {
    width: 16px !important;
    height: 16px !important;
  }
  .top-icons img {
    width: 20px;
    height: 20px;
    margin-left: 0px;
    text-decoration: none;
  }
  .top-icons i {
    font-size: 7px;
  }
}

/* Shop By Category Section */
.shop-by-category {
  padding-top: 20px;
}

.section-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  color: #231f20;
  margin-bottom: 30px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.category-img-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid #008b8b;
  padding: 3px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.category-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-name {
  font-size: 16px;
  font-weight: 500;
  color: #2d2d2d;
  text-align: center;
}

.category-item:hover .category-img-wrapper {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 139, 139, 0.2);
}

@media (max-width: 1200px) {
  .category-img-wrapper {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 22px;
  }
  .category-img-wrapper {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 20px;
    /* text-align: center; */
  }
  .category-img-wrapper {
    width: 90px;
    height: 90px;
  }
  .category-name {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .category-img-wrapper {
    width: 75px;
    height: 75px;
    padding: 2px;
  }
  .category-name {
    font-size: 11px;
  }
}
/* New Arrival - Product Cards */
.new-arrival-section {
  padding: 50px 0px;
}

.product-card {
  height: 430px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid #e4e7e9;
  box-shadow: 0px 4px 23px 0px #94949430;
  transition: transform 0.3s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img-wrapper {
  width: 100%;
  height: 283px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 4px;
}

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

.stars {
  display: flex;
  gap: 2px;
}

.stars img {
  width: 14px;
  height: 14px;
}

.rating-count {
  color: #77878f;
  font-size: 12px;
  font-weight: 400;
}

.product-title {
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  /* line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* height: 40px; */
}

.price-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.old-price {
  color: #929fa5;
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
}

.new-price {
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 600;
}

.card-actions {
  display: flex;
  gap: 8px;
}

.btn-card {
  border: none;
  border-radius: 20px;
  height: 31px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-add-to-cart {
  background-color: #efefef;
  color: #2d2d2d;
  font-weight: 500;
}

.btn-add-to-cart .icon-hover {
  display: none;
}

.btn-add-to-cart:hover {
  background-color: #008b8b;
  color: #ffffff;
}

.btn-add-to-cart:hover .icon-default {
  display: none;
}

.btn-add-to-cart:hover .icon-hover {
  display: inline-block;
}

.btn-order-now {
  background-color: #008b8b;
  color: #ffffff;
  font-weight: 500;
}

.view-more-btn {
  width: 162px;
  height: 44px;
  background-color: #efefef;
  border: none;
  border-radius: 6px;
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 500;
  margin: 30px auto 0;
  display: block;
  transition: all 0.2s ease;
}

.view-more-btn:hover {
  background-color: #e0e0e0;
}

@media (max-width: 575px) {
  .product-card {
    height: auto;
    min-height: 380px;
  }
  .product-img-wrapper {
    height: 200px;
  }
  .card-actions {
    gap: 4px; /* Slightly tighter gap for mobile */
  }
  .btn-card {
    height: 27px; /* Specified mobile height */
    padding: 0 4px;
    font-size: 10px;
  }
  .btn-card img {
    width: 12px !important;
    height: 12px !important;
  }
  .view-more-btn {
    height: 38px;
    font-size: 13px;
    width: 140px;
    margin-top: 20px;
  }
}

@media (max-width: 400px) {
  .card-actions {
    flex-direction: column;
    gap: 6px;
  }
  .btn-card {
    width: 100%;
    flex: none;
    height: 31px;
    font-size: 12px;
  }
  .btn-card img {
    width: 14px !important;
    height: 14px !important;
  }
}

/* Promo Product Section */
.promo-section {
  background: url("./public/bluebg.png") no-repeat center bottom;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}
.dshjsahekwed {
  text-align: center;
}
.promo-section .section-title {
  /* text-align: center; */
  margin-bottom: 40px;
}

.promo-carousel-container {
  position: relative;
  padding: 0 40px;
}

.promo-card {
  width: 287px;
  height: 343px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #e4e7e9;
  box-shadow: 0px 4px 23px 0px #94949430;
  background: #fff;
  display: flex;
  flex-direction: column;
  margin: 10px auto;
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
}

.promo-img-wrapper {
  /* width: 269px; */
  width: 100%;
  height: 210px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  align-self: center;
}

.promo-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 4px;
}

/* Custom Carousel Controls */
.promo-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.promo-control-prev {
  left: 0;
}

.promo-control-next {
  right: 0;
}

@media (max-width: 1200px) {
  .promo-card {
    width: 250px;
    height: 320px;
  }
  .promo-img-wrapper {
    /* width: 232px; */
    height: 180px;
  }
}

@media (max-width: 767px) {
  .promo-carousel-container {
    padding: 0 50px;
  }
  .promo-card {
    width: 100%;
    max-width: 287px;
    height: 343px;
  }
  .promo-img-wrapper {
    /* width: 269px; */
    height: 210px;
  }
  .promo-section {
    padding: 40px 0 80px;
  }
}
/* 8th Section - Promo Banner */
.banner-8th-section {
  position: relative;
  overflow: hidden;
}

.banner-8th-content {
  background: url("./public/8thbg.png") no-repeat center;
  background-size: cover;
  border-radius: 16px;
  padding: 70px 48px 148px 48px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-offer {
  color: #f6b04d;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 93%;
  margin-bottom: 20px;
}

.banner-title {
  color: #ffffff;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 93%;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.banner-desc {
  color: #ffffff;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  max-width: 500px;
  margin-bottom: 35px;
}

.banner-btn {
  height: 43px;
  width: 153px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
}

.banner-btn:hover {
  background-color: #f1f1f1;
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .banner-8th-content {
    padding: 50px 40px 120px 40px;
  }
  .banner-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .banner-8th-content {
    padding: 40px 25px 100px 25px;
    /* text-align: center; */
    /* align-items: center; */
  }
  .banner-offer {
    font-size: 18px;
  }
  .banner-title {
    font-size: 28px;
  }
  .banner-desc {
    font-size: 14px;
    line-height: 1.4;
  }
  .banner-btn {
    width: 130px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 22px;
  }
  .banner-offer {
    font-size: 16px;
  }
}

/* 10th Section - Newsletter */
.newsletter-section {
  background-color: #008b8b;
  padding: 23px 70px 30px 70px;
  color: #ffffff;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-text h2 {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 8px;
  color: #ffffff;
}

.newsletter-text p {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 0;
  opacity: 0.9;
  color: #ffffff;
}

.newsletter-form-container {
  width: 100%;
  max-width: 911px;
}

.newsletter-input-wrapper {
  display: flex;
  align-items: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 8px;
  overflow: hidden;
  height: 52px;
}

.newsletter-input-wrapper i {
  padding: 0 15px;
  font-size: 20px;
  color: #ffffff;
}

.newsletter-input-wrapper input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 10px 5px;
  font-size: 15px;
  width: 100%;
}

.newsletter-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-wrapper input:focus {
  outline: none;
}

.newsletter-btn {
  background-color: #ffffff;
  color: #008b8b;
  border: none;
  height: 100%;
  padding: 0px 60px;
  white-space: nowrap;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #f1f1f1;
  color: #007676;
}

@media (max-width: 991px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .newsletter-section {
    padding: 40px 0;
  }
  .newsletter-input-wrapper {
    height: 48px;
    background: #e0e0e020;
  }
  .newsletter-btn {
    padding: 0 20px;
    font-size: 12px;
  }
  .newsletter-text h2 {
    font-size: 22px;
  }
  .newsletter-text p {
    font-size: 13px;
  }
}

/* Footer Section */
.main-footer {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 60px 0 30px;
}

/* Footer Features Bar */
.footer-features {
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  padding-bottom: 50px;
  margin-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
}

.feature-item {
  padding: 0 40px;
  position: relative;
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-content i {
  font-size: 32px;
  color: #ffffff;
}

.feature-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  color: #ffffff;
}

.feature-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Vertical dividers for feature items */
@media (min-width: 768px) {
  .feature-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0%;
    height: 150%;
    width: 1px;
    background-color: rgba(255, 255, 255, 1);
  }
}

/* Footer Main */
.footer-main {
  padding-bottom: 60px;
}

.footer-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
}

.contact-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-info strong {
  color: #ffffff;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  /* border-radius: 6px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none; */
}
.shdfkhwejdsa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.social-icons a:hover {
  background-color: #ffffff;
  color: #1e1e1e;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.app-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

.app-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.app-buttons img {
  height: 35px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.small-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px !important;
}

.gateway-logos,
.shipping-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gateway-item {
  background: #ffffff;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  color: #1e1e1e;
  min-width: 48px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.shipping-logos img {
  height: 24px;
  width: 43px;
}
.gateway-logos img {
  height: 24px;
  width: 43px;
}

@media (max-width: 991px) {
  .feature-item {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .main-footer {
    padding: 40px 0 20px;
  }
  .feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }
  .feature-item:last-child {
    border-bottom: none;
  }
  .feature-content {
    gap: 10px;
  }
  .footer-title {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .social-icons {
    justify-content: flex-start;
  }
  .social-icons a {
    border-radius: 50%;
  }
  .app-buttons {
    justify-content: center;
  }
  .gateway-logos,
  .shipping-logos {
    justify-content: center;
  }
  .footer-main .col-6 {
    text-align: left;
  }
  .footer-main .footer-title {
    text-align: left;
  }
}

/* Quick View Modal Styles */
.quickview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.quickview-overlay.active {
  visibility: visible;
  opacity: 1;
}

.quickview-container {
  background: #ffffff;
  width: 90%;
  max-width: 1050px;
  max-height: 90vh;
  border-radius: 12px;
  padding: 12px;
  position: relative;
  overflow-y: auto;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.quickview-overlay.active .quickview-container {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.close-btn img {
  width: 24px;
  height: 24px;
}

/* Gallery */
.qv-gallery {
  display: flex;
  gap: 12px;
}

.qv-thumbnails {
  width: 131px;
  justify-content: space-between;
}
.separate-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.thumb-img {
  width: 131px;
  height: 131px;
  object-fit: contain;
  border-radius: 7px;
  border: 1px solid #ebebeb;
  cursor: pointer;
  transition: border-color 0.2s;
}

.thumb-img.active {
  border-color: #008b8b;
}

.qv-main-img-wrapper {
  flex: 1;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}

.qv-main-img {
  /* max-width: 100%; */
  max-height: 423px;
  object-fit: cover;
}

/* Info */
.qv-info {
  padding: 0 10px;
}

.qv-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
  color: #2d2d2d;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qv-rating-row {
  font-size: 14px;
  color: #666;
}

.qv-stars img {
  width: 16px;
  margin-right: 2px;
}

.stock-status {
  color: #21ad50;
  font-weight: 600;
}

.qv-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.qv-old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
}

.qv-new-price {
  font-weight: 700;
  font-size: 24px;
  color: #2d2d2d;
}

.section-label {
  font-weight: 600;
  font-size: 14px;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.required {
  color: #ff0004;
}

.qv-option-btn {
  background: transparent;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  color: #2d2d2d;
  min-width: 45px;
  cursor: pointer;
  transition: all 0.2s;
}

.qv-option-btn:hover {
  border-color: #008b8b;
  color: #008b8b;
}

.qv-option-btn.selected {
  background: #2d2d2d;
  border-color: #2d2d2d;
  color: #ffffff;
}

/* actions */
.qv-qty-selector {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  background: #f5f5f5;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 23px;
  cursor: pointer;
  color: #008b8b;
}

#qtyInput {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-weight: 600;
  outline: none;
}

.qv-add-to-cart {
  height: 40px;
  width: 123px;
  border: 2px solid #008b8b;
  background: transparent;
  color: #008b8b;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.qv-add-to-cart:hover {
  background: rgba(0, 139, 139, 0.05);
}

.qv-order-now {
  height: 40px;
  width: 123px;
  background: #008b8b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.qv-order-now:hover {
  background: #007676;
}

.qv-meta p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .quickview-container {
    padding: 12px;
    width: 95%;
  }

  .qv-gallery {
    flex-direction: column;
  }

  .qv-thumbnails-mobile .thumb-img-mobile {
    width: 32%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border: 1px solid #ebebeb;
    border-radius: 6px;
  }

  .thumb-img-mobile.active {
    border-color: #008b8b;
  }

  .qv-title {
    font-size: 18px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  /* 
  .qv-actions-row {
    justify-content: center;
  } */
}

/* Profile Dropdown Styles */
.profile-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.profile-trigger {
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 193px;
  height: 233px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: none;
  flex-direction: column;
}

.profile-dropdown-menu.active {
  display: flex;
}

.profile-header {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.profile-avatar {
  margin-left: 0px !important;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f8f8f8; /* Placeholder color */
  border: 1px solid #008b8b;
}

.profile-name {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #2d2d2d;
}

.profile-menu-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex: 1;
}

.profile-menu-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
  text-align: left;
}

.profile-menu-list li a:hover {
  background-color: #f9f9f9;
  color: #008b8b;
}

.profile-menu-list li a i {
  font-size: 18px;
  color: #2d2d2d;
}

@media (max-width: 767px) {
  .profile-dropdown-menu {
    width: 170px;
    height: auto;
    right: -10px;
  }

  .profile-header {
    padding: 12px;
  }

  .profile-menu-list li a {
    padding: 8px 12px;
  }
}

/* Sticky Navbar Styles */
.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.3s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.inputtsss {
  width: 60px;
  border: none;
  text-align: center;
}
.inputtsss:focus {
  outline: none;
  border: none;
}
.tab-trigger {
  padding: 15px 30px;
  cursor: pointer;
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #929fa5;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}
.tab-trigger.active {
  color: #008b8b;
  border-bottom-color: #008b8b;
}
.size-guideline-table-wrapper {
  max-width: 428px;
  border: 1px solid #008b8b;
  border-radius: 8px;
  overflow: hidden;
}
.size-guideline-table {
  width: 100%;
  border-collapse: collapse;
}
.size-guideline-table th {
  background-color: #ffffff;
  color: #1e1e1e;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid #008b8b;
  border-right: 1px solid #008b8b;
}
.size-guideline-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #008b8b;
  border-right: 1px solid #008b8b;
  color: #1e1e1e;
  font-size: 14px;
}
.size-guideline-table td:last-child {
  border-right: none;
}
.size-guideline-table tr:last-child td {
  border-bottom: none;
}
.review-card {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.review-name {
  font-weight: 600;
  font-size: 16px;
  color: #1e1e1e;
  margin-bottom: 0px;
}
.review-date {
  font-size: 11px;
  color: #929fa5;
}
.review-text {
  font-size: 14px;
  color: #2d2d2d;
  line-height: 1.6;
  margin-top: 15px;
}
.load-more-btn {
  border: 1px solid #008b8b;
  background: transparent;
  color: #008b8b;
  border-radius: 8px;
  padding: 10px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.load-more-btn:hover {
  background: #008b8b;
  color: #ffffff;
}
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}
.tab-pane.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e1e1e;
  transition: all 0.2s ease;
}
.pagination-item.active {
  background: #008b8b;
  color: #ffffff;
  border-color: #008b8b;
}
.pagination-item:hover:not(.active) {
  border-color: #008b8b;
  color: #008b8b;
}
.pagination-dots {
  color: #7a7a7a;
  padding: 0 5px;
}
/* Blog Hero Section Styles */
.blog-hero-img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.blog-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.blog-date {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #a3a0a0;
  margin-bottom: 24px;
}

.blog-desc {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  margin-bottom: 30px;
}

.blog-share-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.blog-share-label {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #231f20;
}

.blog-share-icons {
  display: flex;
  gap: 12px;
}

.blog-read-more {
  width: 162px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #008b8b;
  background-color: #008b8b;
  color: #ffffff;
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.blog-read-more:hover {
  background-color: #007676;
  border-color: #007676;
  color: #ffffff;
}

@media (max-width: 991px) {
  .blog-hero-img {
    height: 300px;
  }
  .blog-title {
    font-size: 22px;
    line-height: 1.4;
  }
}

/* Blog Cards Section Styles */
.blog-card {
  height: 583px;
  border: 1px solid #ebebeb;
  box-shadow: 0px 4px 23px 0px rgba(148, 148, 148, 0.19);
  padding: 12px;
  border-radius: 12px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px 0px rgba(148, 148, 148, 0.3);
}

.blog-card-img {
  height: 407px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
}

.blog-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.27;
  color: #000000;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-card-date {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: rgba(35, 31, 32, 0.5); /* #231F2080 */
}

.blog-card-btn {
  width: 130px;
  height: 35px;
  background-color: #008b8b;
  border: 1px solid #008b8b;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.blog-card-btn:hover {
  background-color: #007676;
  border-color: #007676;
  color: #ffffff;
}

/* About Us Section Styles */
.about-us-section {
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 1304px;
  margin-left: auto;
  margin-right: auto;
}

.about-sublabel {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.12;
  color: #008b8b;
  margin-bottom: 15px;
  display: block;
}

.about-heading {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.12;
  color: #000000;
  margin-bottom: 25px;
}

.about-description {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #696868;
  margin-bottom: 20px;
}

.about-img {
  height: 395px;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .about-us-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about-img {
    height: 300px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .about-us-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about-heading {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .about-sublabel {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .about-description {
    line-height: 26px;
    margin-bottom: 15px;
  }
  .about-img {
    height: 250px;
    border-radius: 12px;
  }
}

@media (max-width: 575.98px) {
  .about-us-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .about-heading {
    font-size: 22px;
  }
}

/* Core Values & Mission Section */
.values-mission-section {
  padding-top: 150px; /* Space for the overlapping card */
  padding-bottom: 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.values-main-card {
  border: 1px solid #ebebeb;
  box-shadow: 0px 4px 23px 0px rgba(148, 148, 148, 0.19); /* #94949430 */
  border-radius: 24px;
  min-height: 412px;
  position: relative;
  background: #ffffff;
  padding: 140px 40px 40px; /* Padding for the top card */
}

.core-values-card {
  background: #008b8b;
  border-radius: 12px;
  padding: 30px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 633px;
  min-height: 213px;
  z-index: 10;
  color: #ffffff;
}

.core-values-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
}

.value-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.mission-vision-row {
  display: flex;
  justify-content: space-around;
  /* text-align: center; */
  max-width: 811px;
  margin-left: auto;
  margin-right: auto;
}

.mission-vision-item {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mv-icon {
  margin-bottom: 15px;
}

.mv-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  margin-bottom: 10px;
}

.mv-desc {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #2d2d2d;
}

@media (max-width: 991.98px) {
  .values-mission-section {
    padding-top: 50px; /* No overlap on mobile or smaller overlap */
  }
  .values-main-card {
    padding: 30px 20px;
    height: auto;
    min-height: auto;
    margin-top: 150px;
  }
  .core-values-card {
    position: absolute; /* Still overlapping but simpler */
    width: 95%;
  }
  .value-items-grid {
    grid-template-columns: 1fr;
  }
  .mission-vision-row {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 767.98px) {
  .values-main-card {
    margin-top: 250px; /* Extra space for stacked features */
  }
  .core-values-card {
    min-height: auto;
  }
}

/* Business With Us Section Styles */
.bwu-section {
  max-width: 1002px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80px;
}

.bwu-heading {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.bwu-description {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #2d2d2d;
  margin-bottom: 25px;
  max-width: 536px;
}

.bwu-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.bwu-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #2d2d2d;
}

.bwu-btn {
  width: 119px;
  height: 35px;
  border-radius: 6px;
  border: 1px solid #008b8b;
  background-color: #008b8b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bwu-btn:hover {
  background-color: #007676;
  border-color: #007676;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .bwu-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .bwu-img-wrapper {
    margin-bottom: 30px;
  }
  .bwu-description {
    max-width: 100%;
  }
}

/* Become a Wholesaler Section Styles */
.baw-section {
  max-width: 1002px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80px;
}

.baw-heading {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.baw-description {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #2d2d2d;
  margin-bottom: 25px;
  max-width: 536px;
}

.baw-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.baw-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #2d2d2d;
}

.baw-img-wrapper {
  display: flex;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .baw-section {
    padding-bottom: 50px;
  }
  .baw-img-wrapper {
    margin-top: 30px;
  }
  .baw-description {
    max-width: 100%;
  }
}

/* Contact Us Page Styles */
.contact-section {
  padding-top: 50px;
  padding-bottom: 80px;
  padding-left: 25px;
  padding-right: 25px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.contact-banner-wrapper {
  margin-bottom: 50px;
}

.contact-banner-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.contact-info-col {
  padding-right: 40px;
}

.contact-info-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #2d2d2d;
  margin-bottom: 8px;
}
.contact-info-text {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.social-follow-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2d2d2d;
  margin-bottom: 15px;
  margin-top: 10px;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-social-icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact-social-icons img:hover {
  opacity: 0.8;
}

.contact-form-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  margin-bottom: 12px;
}

.contact-form-subtitle {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 35px;
  max-width: 530px;
}

.contact-label {
  display: block;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.contact-label span {
  color: #e74c3c;
}

.contact-input-field {
  background: #f8f8f8;
  height: 50px;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 12px 20px;
  width: 100%;
  font-family: "Inter Display", sans-serif;
  font-size: 14px;
  color: #2d2d2d;
  transition: border-color 0.3s ease;
}

.contact-input-field::placeholder {
  color: #aaaaaa;
}

.contact-input-field:focus {
  outline: none;
  border-color: #008b8b;
}

.contact-textarea {
  height: 180px;
  resize: none;
}

.contact-submit-btn {
  width: 171px;
  height: 44px;
  background-color: #008b8b;
  border: 1px solid #008b8b;
  border-radius: 6px;
  color: #ffffff;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #007676;
  border-color: #007676;
}

@media (max-width: 991.98px) {
  .contact-info-col {
    padding-right: 12px;
    margin-bottom: 50px;
  }
  .contact-form-title {
    font-size: 28px;
    text-align: center;
  }
  .contact-form-subtitle {
    text-align: center;
    width: 100%;
    max-width: unset;
  }
}

/* Shopping Cart Page Styles */
.cart-page-section {
  padding-top: 30px;
  padding-bottom: 80px;
}

.cart-breadcrumb {
  font-family: "Inter Display", sans-serif;
  font-size: 14px;
  color: #666666;
  margin-bottom: 30px;
}

.cart-breadcrumb a {
  text-decoration: none;
  color: #666666;
}

.cart-breadcrumb span {
  color: #2d2d2d;
}

.cart-header-section {
  text-align: center;
  margin-bottom: 50px;
}

.cart-page-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  margin-bottom: 15px;
}

.cart-page-subtitle {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  max-width: 530px;
  margin: 0 auto;
}

.cart-main-card,
.order-summary-card {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 19px 14px;
  background: #ffffff;
}

.cart-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.cart-item-divider {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #008b8b;
}
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cart-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  /* padding-bottom: 25px; */
  /* border-bottom: 1px solid #ebebeb; */
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-img {
  width: 103px;
  height: 103px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.cart-item-name {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #1a1a1a;
  max-width: 440px;
  text-decoration: none;
}

.cart-item-price {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
}

.cart-item-variant {
  font-family: "Inter Display", sans-serif;
  font-size: 14px;
  color: #8c8c8c;
  margin-bottom: 15px;
}

.cart-item-variant span {
  color: #1a1a1a;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-qty-selector {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border-radius: 4px;
  overflow: hidden;
}

.cart-qty-btn {
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008b8b;
  font-size: 18px;
  cursor: pointer;
}

.cart-qty-input {
  width: 35px;
  height: 25px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}

.cart-remove-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #e84c4e;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Order Summary Styles */
.summary-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.promo-section1 {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.promo-input {
  flex-grow: 1;
  height: 35px;
  background: #f8f8f8;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 12px;
}

.promo-apply-btn {
  width: 62px;
  height: 35px;
  border: 1px solid #008b8b;
  border-radius: 4px;
  background: transparent;
  color: #2d2d2d;
  font-size: 12px;
  font-weight: 600;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #008b8b80;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter Display", sans-serif;
  font-size: 14px;
}

.summary-label {
  color: #1a1a1a;
  font-weight: 600;
}

.summary-value {
  color: #1a1a1a;
  font-weight: 600;
}

.summary-value.discount {
  color: #e84c4e;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.checkout-btn {
  width: 100%;
  height: 44px;
  background-color: #008b8b;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .order-summary-card {
    margin-top: 30px;
  }
  .cart-item-name {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .cart-item {
    flex-direction: column;
  }
  .cart-item-img {
    width: 100%;
    height: 200px;
  }
}

/* Checkout Page Styles */
.checkout-page-section {
  padding-top: 30px;
  padding-bottom: 80px;
}

.checkout-main-card {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 30px;
  background: #ffffff;
}
.mobile-provider-icon {
  height: 20px;
  width: 29px;
}
.option-text {
  font-family: Inter Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #323232;
}
.terms-content-section,
.terms-hero-section {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.bussiness-with-us-section {
  padding-top: 30px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 888px;
  margin-left: auto;
  margin-right: auto;
}
.activeoption-text {
  font-family: Inter Display;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #da0235;
}
.checkout-section-title {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-link {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a90e2;
  text-decoration: none;
}

.login-link:hover {
  text-decoration: underline;
}

.selection-card {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.selection-card:hover {
  border-color: #008b8b;
}

.selection-card.active {
  border-color: #008b8b;
  background-color: #f8fdfd;
}

/* Custom Radio Button for Selection Cards */
.custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #ebebeb;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.selection-card.active .custom-radio {
  border-color: #008b8b;
}

.selection-card.active .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #008b8b;
  border-radius: 50%;
}

.selection-label {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
  flex-grow: 1;
}

.selection-price {
  font-family: "Inter Display", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  display: block;
  margin-top: 4px;
}

/* Terms Checkbox */
.terms-checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.terms-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  cursor: pointer;
}

.terms-label {
  font-family: "Inter Display", sans-serif;
  font-size: 12px;
  color: #666666;
  margin: 0;
}

.terms-label a {
  color: #008b8b;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .checkout-main-card {
    padding: 20px;
    margin-bottom: 30px;
  }
}

/* Dynamic Payment Content Styles */
.mobile-payment-dropdown {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 20px;
  margin-top: 15px;
  background: #ffffff;
}

.mobile-payment-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-payment-option:last-child {
  border-bottom: none;
}

.mobile-payment-option:hover {
  background-color: #fafafa;
}

.mobile-payment-text {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
}
.mobile-payment-text1 {
  font-family: "Inter Display", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e84c4e;
}

/* Bank Payment Form Styles */
.bank-payment-form {
  padding-top: 20px;
}

.form-note {
  font-family: "Inter Display", sans-serif;
  font-size: 13px;
  color: #1a1a1a;
  margin-top: 10px;
}

.form-note span {
  color: #f5a623;
  font-weight: 600;
}

.required-asterisk {
  color: #e14942;
}
.payment-note-label {
  color: #e0ac00;
  font-weight: 600;
}
.payment-note-text {
  font-size: 14px;
  color: #2d2d2d;
  margin-top: 15px;
}

.payment-input-field {
  background-color: #f8f9fa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  height: 54px; /* Taller input as per design */
  padding: 10px 20px;
  font-size: 14px;
  color: #2d2d2d;
}

.payment-input-field:focus {
  background-color: #ffffff;
  border-color: #ebebeb;
  box-shadow: none;
}

.payment-input-field::placeholder {
  color: #b4b4b4;
  font-weight: 400;
}

/* Order Success Modal */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(2px);
}

.custom-modal-overlay.active {
  display: flex;
}

.custom-modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 630px; /* Approximate width based on image layout */
  padding: 50px 40px;
  border-radius: 32px;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 4px 134px 0px #46b7d11f;
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.modal-close-btn:hover {
  transform: scale(1.1);
}

.modal-icon {
  margin-bottom: 25px;
}

.modal-title {
  font-family: "Inter Display", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.modal-text {
  font-family: "Inter Display", sans-serif;
  font-size: 15px;
  color: #4f4f4f;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
}

/* FAQ Section Styles */
.faq-item {
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  user-select: none;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
}

.faq-icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-content {
  max-height: 500px; /* Big enough for any answer */
}

.faq-answer-box {
  background: #eef8f5;
  border-radius: 6px;
  padding: 16px;
  margin: 0 24px 24px 24px;
}

.faq-answer {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

.faq-item.active {
  border-color: #008b8b;
  box-shadow: 0 4px 12px rgba(0, 139, 139, 0.08);
}

@media (max-width: 768px) {
  .faq-header {
    padding: 16px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-answer-box {
    margin: 0 16px 16px 16px;
    padding: 12px;
  }
  .faq-answer {
    font-size: 14px;
  }
}

/* Careers Section Styles */
.careers-hero {
  background-color: #effbff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.careers-content-wrapper {
  max-width: 648px;
  width: 100%;
}

.careers-heading {
  color: #231f20;
  font-family: inherit;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.12; /* 112% */
  margin-bottom: 20px;
}

.careers-description {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.careers-btn {
  width: 225px;
  height: 48px;
  background-color: #008b8b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.careers-btn:hover {
  background-color: #007373;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 139, 139, 0.2);
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 50px 20px;
  }
  .careers-heading {
    font-size: 24px;
  }
}

/* Job Openings Section Styles */
.job-openings-section {
  padding: 60px 0;
}

.job-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.job-card {
  background-color: rgba(217, 217, 217, 0.19); /* #D9D9D930 approx */
  border-radius: 4px;
  padding: 24px;
  height: 100%;
  min-height: 261px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  background-color: rgba(217, 217, 217, 0.3);
}

.job-title {
  font-size: 16px;
  font-weight: 700;
  color: #231f20;
  line-height: 1.4;
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  color: #4a4a4a;
  font-size: 14px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-meta-item i {
  font-size: 16px;
  color: #2d2d2d;
}

.job-excerpt {
  font-size: 13px;
  color: rgba(45, 45, 45, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.apply-now-btn {
  width: 95px;
  height: 36px;
  background-color: #008b8b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.apply-now-btn:hover {
  background-color: #007373;
  color: #fff;
}

@media (max-width: 991px) {
  .job-card {
    margin-bottom: 20px;
  }
}

/* Benefit Section Styles */
.benefit-section {
  padding: 80px 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.benefit-left-content {
  padding-right: 40px;
}

.benefit-main-title {
  font-size: 20px;
  font-weight: 500;
  color: #231f20;
  margin-bottom: 10px;
}

.benefit-brand-title {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.benefit-intro-text {
  font-size: 15px;
  color: #2d2d2d;
  line-height: 1.8;
}

.benefit-card {
  height: 134px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.benefit-card i {
  font-size: 20px;
  color: #2d2d2d;
  transition: color 0.3s ease;
}

.benefit-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
  transition: color 0.3s ease;
}

.benefit-card-text {
  font-size: 12px;
  color: rgba(45, 45, 45, 0.6);
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.benefit-card:hover {
  background-color: #008b8b;
  border-color: #008b8b;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 139, 139, 0.15);
}

.benefit-card:hover .benefit-card-title,
.benefit-card:hover .benefit-card-text,
.benefit-card:hover i {
  color: #ffffff;
}

.benefit-card.active-benefit {
  background-color: #008b8b;
  border-color: #008b8b;
}

.benefit-card.active-benefit .benefit-card-title,
.benefit-card.active-benefit .benefit-card-text,
.benefit-card.active-benefit i {
  color: #ffffff;
}

@media (max-width: 991px) {
  .benefit-left-content {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }
}

/* Job Application Styles */
.job-apply-section {
  padding: 80px 70px;
}

.job-apply-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.job-apply-subtitle {
  font-size: 16px;
  color: #2d2d2d;
  font-weight: 500;
  margin-bottom: 30px;
}

.job-detail-section {
  margin-bottom: 35px;
}

.job-detail-h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.job-detail-item {
  font-size: 15px;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.job-detail-item strong {
  font-weight: 600;
}

.job-detail-text {
  font-size: 15px;
  color: #2d2d2d;
  line-height: 1.7;
  margin-bottom: 15px;
}

.job-apply-form-container {
  background: #fff;
  padding: 0 0 0 40px;
}

.upload-container {
  border: 1px dashed #008b8b;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  background-color: #f8ffff;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.upload-container:hover {
  background-color: #efffff;
}

.upload-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: #008b8b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #fff;
}

.upload-icon-wrapper i {
  font-size: 24px;
}

.upload-text-main {
  font-size: 14px;
  color: #2d2d2d;
  font-weight: 500;
  margin-bottom: 5px;
}

.upload-text-main span {
  color: #008b8b;
  font-weight: 700;
  text-decoration: none;
}

.upload-text-sub {
  font-size: 11px;
  color: #a0a0a0;
}

.apply-submit-btn {
  background-color: #008b8b;
  color: #fff;
  border: none;
  border-radius: 6px;
  height: 48px;
  padding: 0 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.apply-submit-btn:hover {
  background-color: #007373;
  color: #fff;
}

@media (max-width: 991px) {
  .job-apply-form-container {
    padding-left: 0;
    margin-top: 50px;
  }
  .job-apply-section {
    padding: 80px 25px;
  }
}

/* Login Page Styles */
.login-section {
  display: flex;
  /* min-height: 100vh; */
  padding-top: 25px;
}

.login-left-fixed {
  flex: 1;
  background: #0061ff; /* Fallback */
  background-image: url("./public/loginleft.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-left-fixed {
  flex: 1;
  background: #f8f9fa; /* Fallback */
  background-image: url("./public/signupleft.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-right-content {
  flex: 1;
  /* background-color: #f8f9fa; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.login-card-inner {
  background: #ffffff;
  border-radius: 32px;
  padding: 60px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0px 4px 134px 0px #46b7d11f;
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.login-header p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
}

.password-input-wrapper {
  position: relative;
}

.password-toggle-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.login-options a {
  color: #008b8b;
  text-decoration: none;
  font-weight: 500;
}

.secondary-login-btn {
  background-color: #008b8b;
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 52px;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.secondary-login-btn:hover {
  background-color: #007373;
  color: #fff;
}

.register-prompt {
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
  color: #4a4a4a;
}

.register-prompt a {
  color: #008b8b;
  font-weight: 700;
  text-decoration: none;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1.5px solid #d1d1d1;
  border-radius: 8px;
  height: 52px;
  width: 100%;
  background: #fff;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-login-btn:hover {
  border-color: #008b8b;
  background: #f8ffff;
}

.social-login-btn img,
.social-login-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1199px) {
  .login-card-inner {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .login-section {
    flex-direction: column;
    padding-top: 20px;
  }
  .login-left-fixed {
    height: 250px;
    position: relative;
  }
  .login-right-content {
    padding: 20px 15px;
  }
  .login-card-inner {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .login-header h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .login-header p {
    font-size: 13px;
  }
  .login-card-inner {
    padding: 25px 15px;
  }
  .secondary-login-btn,
  .social-login-btn {
    height: 48px;
    font-size: 14px;
  }
  .login-options {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .form-check-label {
    font-size: 13px;
  }
}

/* Forgot Password Styles */
.forgot-password-section {
  padding: 80px 0;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.forgot-password-section .login-card-inner {
  margin: 0 auto;
}

.forgot-header {
  text-align: center;
  margin-bottom: 30px;
}

.forgot-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.forgot-header p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.otp-inputs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 30px 0;
}

.otp-box {
  width: 54px;
  height: 54px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  background-color: #fff;
  transition: all 0.3s ease;
}

.otp-box:focus {
  border-color: #008b8b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

.resend-text {
  text-align: center;
  font-size: 14px;
  color: #6c757d;
  margin-top: 20px;
}

.resend-text a {
  color: #008b8b;
  font-weight: 700;
  text-decoration: none;
}

.step-hidden {
  display: none;
}

@media (max-width: 576px) {
  .otp-box {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .otp-inputs {
    gap: 8px;
  }
  .forgot-header h2 {
    font-size: 24px;
  }
}

/* Profile Page Styles */
.profile-section {
  padding: 60px 30px;
}

.profile-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 25px;
}

.profile-avatar-wrap {
  margin-bottom: 30px;
}

.profile-avatar-main {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.profile-label-main {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 15px;
  display: block;
}

.billing-card-group {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.profile-billing-card {
  flex: 1;
  min-width: 250px;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
}

.profile-billing-card:hover {
  border-color: #008b8b;
  background-color: #f8ffff;
}

.profile-billing-card.active {
  border-color: #008b8b;
  box-shadow: 0 4px 12px rgba(0, 139, 139, 0.1);
}

.profile-billing-card .radio-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-billing-card.active .radio-circle {
  border-color: #008b8b;
}

.profile-billing-card.active .radio-circle::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #008b8b;
  border-radius: 50%;
}

.profile-billing-card i {
  font-size: 20px;
  color: #008b8b;
}

.profile-billing-card span {
  font-size: 14px;
  font-weight: 500;
  color: #2d2d2d;
}

.outline-teal-btn {
  border: 1px solid #008b8b;
  color: #008b8b;
  background: transparent;
  border-radius: 8px;
  height: 48px;
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.outline-teal-btn:hover {
  background: #008b8b;
  color: #fff;
}

.security-section {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .billing-card-group {
    flex-direction: column;
  }
  .profile-billing-card {
    min-width: 100%;
  }
}

/* Change Password Styles */
.breadcrumb-nav {
  padding: 30px 0;
}

.breadcrumb-nav .breadcrumb {
  margin: 0;
  font-size: 14px;
}

.breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #2d2d2d;
  font-weight: 600;
}

.change-password-section {
  padding-bottom: 80px;
}

.change-password-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.change-password-container h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.change-password-form {
  text-align: left;
}

.password-hint {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 25px;
}

.save-changes-btn {
  background-color: #008b8b;
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 52px;
  width: 100%;
  max-width: 250px;
  font-weight: 600;
  font-size: 16px;
  margin: 20px auto 0;
  display: block;
  transition: all 0.3s ease;
}

.save-changes-btn:hover {
  background-color: #007a7a;
  transform: translateY(-2px);
}

/* Track Order Styles */
.track-order-section {
  padding: 60px 0px 100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 906px;
}

/* Custom Stepper */
.track-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  text-align: center;
  position: relative;
  flex: 1;
  z-index: 2;
}

.step-circle {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 10;
  border: 1.5px solid #929fa5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  background: #fff;
  color: #929fa5;
  font-weight: 600;
  font-size: 14px;
}

.step-item.active .step-circle,
.step-item.completed .step-circle {
  border-color: #008b8b;
  color: #008b8b;
}

.step-item.completed .step-circle {
  background: #008b8b;
  color: #fff;
}

.step-label {
  font-size: 14px;
  font-weight: 600;
  color: #929fa5;
}

.step-item.active .step-label {
  color: #008b8b;
}

.step-line {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 1.5px;
  background-color: #929fa5;
  z-index: 1;
}

.step-line.filled {
  background-color: #008b8b;
}

/* Order Progress Cards */
.tracking-card {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 17px;
  background: #fff;
  margin-bottom: 25px;
}

.status-badge {
  color: #ffc130;
  border: 1px solid #ffc130;
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.timeline-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.timeline-step {
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  /* max-width: 134px; */
}

.timeline-step.completed {
  background-color: #5bbb7b;
}

.timeline-step.upcoming {
  background-color: #929fa5;
}

.timeline-date {
  font-size: 12px;
  color: #6c757d;
  display: block;
  margin-top: 8px;
}

.need-help {
  font-size: 14px;
  color: #2d2d2d;
  margin-top: 20px;
}

.need-help span {
  color: #f9a51a;
  font-weight: 600;
}

/* Product & Summary Grid */
.track-product-item {
  display: flex;
  gap: 20px;
  padding: 15px 10px;
  border-bottom: 1px solid #eeeeeeb2;
}

.track-product-item:last-child {
  border-bottom: none;
}

.track-product-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.track-product-info h6 {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #2d2d2d;
}

.track-summary-box {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #2d2d2d;
}

.summary-divider {
  border-top: 1px solid #008b8b;
  margin: 15px 0;
}

@media (max-width: 391px) {
  .timeline-group {
    flex-direction: column;
    gap: 10px;
  }
}

/* Wishlist Styles */
.wishlist-section {
  padding: 40px 25px 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.wishlist-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 30px;
}

.wishlist-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.wishlist-title span {
  font-size: 16px;
  color: #6c757d;
}

.wishlist-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
}

.wishlist-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.wishlist-info {
  flex-grow: 1;
}

.wishlist-info h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #2d2d2d;
}

.wishlist-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
}

.rating-stars {
  color: #ffc130;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-stars span {
  color: #6c757d;
  font-size: 13px;
}

.availability-label {
  color: #6c757d;
}

.availability-status {
  color: #28a745;
  font-weight: 600;
}

.views-count {
  color: #6c757d;
}

.remove-btn {
  color: #e14942;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: opacity 0.2s;
}

.remove-btn:hover {
  opacity: 0.8;
  color: #c83b35;
}

.wishlist-actions {
  text-align: right;
  min-width: 180px;
}

.wishlist-price {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.wishlist-divider {
  border-top: 2px solid #008b8b;
  margin: 0;
}

@media (max-width: 768px) {
  .wishlist-item {
    flex-direction: column;
    text-align: center;
  }
  .wishlist-actions {
    text-align: center;
    width: 100%;
  }
}

/* How To Order Styles */
.how-to-order-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 25px 100px;
  text-align: center;
}

.how-to-order-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2d2d2d;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

.featured-video {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.thumb-video {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  min-height: 243px;
}

.video-wrapper video {
  display: none;
}

.video-wrapper.has-video video {
  display: block;
}

.video-wrapper.has-video img {
  display: none;
}

/* Share Your Idea Styles */
.share-idea-section {
  padding: 60px 0 100px;
}

.share-idea-container {
  max-width: 716px;
  margin: 0 auto;
}

.share-idea-title {
  font-size: 32px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 40px;
}

/* Not Found Styles */
.not-found-section {
  padding: 100px 0 150px;
}

.not-found-container {
  max-width: 648px;
  margin: 0 auto;
}

.not-found-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 35px;
}

.not-found-text {
  font-size: 18px;
  color: #231f20;
  line-height: 1.5;
}

/* Our Team Styles */
.our-team-section {
  background-color: #effbff;
  padding: 80px 25px 120px;
  margin-top: 20px;
}

.our-team-container {
  max-width: 1134px;
  margin: 0 auto;
}

.our-team-heading {
  font-size: 32px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 20px;
}

.our-team-description {
  font-size: 14px;
  color: #2d2d2d;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.team-card {
  background: #ffffff;
  border-radius: 9px;
  padding: 29px;
  box-shadow: 0px 4px 23px 0px #cbcbcb40;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 5px;
}

.team-role {
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 12px;
  color: #2d2d2d;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Sitemap Styles */
.sitemap-section {
  padding: 80px 0 120px;
  background: white;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.sitemap-node {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  color: #231f20;
  min-width: 140px;
  white-space: nowrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.sitemap-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sitemap-sub-node {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #231f20;
  width: 100%;
  white-space: nowrap;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.sitemap-sub-node:last-child {
  margin-bottom: 0;
}

.sitemap-sub-list {
  background: white;
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Colors - Main Nodes */
.node-home {
  background: #e6f7f7;
  border: 1px solid #008b8b;
}
.node-shop {
  background: #ffe7b9;
  border: 1px solid #ebb34a;
}
.node-blog {
  background: #dcffc9;
  border: 1px solid #8ae25c;
}
.node-about {
  background: #ffe2df;
  border: 1px solid #ea7d75;
}
.node-contact {
  background: #fffabf;
  border: 1px solid #d0c334;
}
.node-profile {
  background: #f2dfff;
  border: 1px solid #bc60f6;
}
.node-policies {
  background: #d2fff4;
  border: 1px solid #42c0a3;
}
.node-support {
  background: #b8bbff;
  border: 1px solid #797fef;
}

/* Colors - Sub Nodes */
.node-shop-sub {
  background: #fffaf2;
  border: 1px solid #ebb34a;
}
.node-blog-sub {
  background: #f3ffed;
  border: 1px solid #8ae25c;
}
.node-about-sub {
  background: #fff3f2;
  border: 1px solid #ea7d75;
}
.node-contact-sub {
  background: #fefce4;
  border: 1px solid #d0c334;
}
.node-profile-sub {
  background: #f9efff;
  border: 1px solid #bc60f6;
}
.node-policies-sub {
  background: #ebfffa;
  border: 1px solid #42c0a3;
}
.node-support-sub {
  background: #e6e8ff;
  border: 1px solid #797fef;
}

/* Tree Connectivity Lines - Desktop */
@media (min-width: 992px) {
  .sitemap-horizontal-line {
    width: 80%;
    height: 1px;
    background: #008b8b60;
    margin: 40px 0;
    position: relative;
  }

  .sitemap-vertical-line {
    width: 1px;
    height: 40px;
    background: #008b8b60;
  }

  .line-to-nodes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  .branch-line {
    width: 1px;
    height: 40px;
    background: #008b8b60;
    position: absolute;
    top: -40px;
  }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .sitemap-sub-list {
    width: 100%;
  }
  .sitemap-node {
    width: 100%;
    max-width: 300px;
  }
  .sitemap-vertical-line {
    height: 30px;
  }
  .sitemap-mobile-branch {
    width: 1px;
    height: 30px;
    background: #008b8b60;
  }
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(45, 45, 45, 0.6);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-wrapper:hover .play-btn-overlay {
  background: rgba(0, 139, 139, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-overlay i {
  color: #fff;
  font-size: 24px;
}

.thumbnail-grid {
  margin-top: 60px;
}

.thumbnail-grid h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
  color: #2d2d2d;
}

@media (max-width: 768px) {
  .play-btn-overlay {
    width: 45px;
    height: 45px;
  }
  .play-btn-overlay i {
    font-size: 18px;
  }
}
