:root {
  --siteWidth: 1600px;
}
@media (max-width: 1600px) {
  :root {
    --siteWidth: 1440px;
  }
}
@media (max-width: 1440px) {
  :root {
    --siteWidth: 1200px;
  }
}
@media (max-width: 1200px) {
  :root {
    --siteWidth: 1024px;
  }
}
@media (max-width: 1024px) {
  :root {
    --siteWidth: 992px;
  }
}
@media (max-width: 992px) {
  :root {
    --siteWidth: 95%;
  }
}
@media (max-width: 768px) {
  :root {
    --siteWidth: calc(100% - 30px);
  }
}

.siteWidth {
  width: var(--siteWidth);
}

* {
  font-family: "Mulish", sans-serif;
}

@media (min-width: 1024px) {
  body.fixedMenu header {
    padding-top: 5px;
  }
  body.fixedMenu header .header-Top {
    justify-content: center;
  }
  body.fixedMenu header .header-Left {
    order: 1;
    margin-right: auto;
  }
  body.fixedMenu header .header-Center {
    order: 3;
    width: 500px;
  }
  body.fixedMenu header .header-Center .searchBar {
    width: 100%;
  }
  body.fixedMenu header .header-Right {
    order: 4;
    margin-left: auto;
  }
  body.fixedMenu header .header-Bottom {
    order: 2;
    width: 130px;
  }
  body.fixedMenu header .main_li {
    display: none;
  }
  body.fixedMenu header .main_li.shopMenu {
    display: initial;
  }
}

header {
  transition: linear all 0.5s;
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 99;
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
  --leftRightWidth: 240px;
  padding-top: 25px;
  border-bottom: 0;
}
@media (max-width: 992px) {
  header {
    --leftRightWidth: calc(100% - 100px);
  }
}
@media (max-width: 992px) {
  header {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
header .header-Top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  header .header-Top {
    flex-wrap: wrap;
  }
}
header .header-Left {
  width: var(--leftRightWidth);
}
@media (max-width: 992px) {
  header .header-Left {
    width: 250px;
  }
}
@media (max-width: 767px) {
  header .header-Left {
    width: 200px;
  }
  header .header-Left > a {
    width: 100%;
    display: block;
  }
  header .header-Left > a img {
    width: 100%;
  }
}
header .header-Center {
  width: calc(100% - var(--leftRightWidth) * 2);
  text-align: center;
}
@media (max-width: 992px) {
  header .header-Center {
    width: 100%;
    order: 3;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  header .header-Center {
    margin-top: 50px;
  }
}
header .header-Center .searchBar {
  width: 45%;
  display: inline-block;
  position: relative;
}
@media (max-width: 992px) {
  header .header-Center .searchBar {
    width: 100%;
  }
}
header .header-Center .searchBar .searchText {
  width: 100%;
  border: 0;
  background: #f8f8f6;
  padding: 7px 30px 7px 10px;
  border-radius: 3px;
  font-size: 18px;
}
@media (max-width: 1024px) {
  header .header-Center .searchBar .searchText {
    font-size: 16px;
  }
}
header .header-Center .searchBar .searchText::placeholder {
  font-size: 18px;
}
@media (max-width: 1024px) {
  header .header-Center .searchBar .searchText::placeholder {
    font-size: 16px;
  }
}
header .header-Center .searchBar .searchBtn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 1024px) {
  header .header-Center .searchBar .searchBtn {
    font-size: 16px;
  }
}
header .header-Right {
  width: var(--leftRightWidth);
}
@media (max-width: 992px) {
  header .header-Right {
    width: 100px;
  }
}
header .header-Right .cs_WelcomeSignIn .nologin {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
header .header-Right .cs_WelcomeSignIn .nologin .btn {
  border-radius: 3px;
  padding: 5px 15px;
}
header .header-Right .cs_WelcomeSignIn .nologin .cs_shoppingCart {
  min-width: 60px;
}
@media (max-width: 992px) {
  header .header-Right .cs_WelcomeSignIn .nologin .cs_shoppingCart {
    width: 70px;
    display: flex;
    justify-content: space-between;
  }
}
header .header-Right .cs_WelcomeSignIn .nologin .cs_shoppingCart .menuTrigger {
  display: none;
}
@media (max-width: 992px) {
  header .header-Right .cs_WelcomeSignIn .nologin .cs_shoppingCart .menuTrigger {
    display: inline-block;
    font-size: 30px;
    color: #ee2128;
  }
}
header .header-Right .cs_WelcomeSignIn .nologin .cs_shoppingCart .add-cart {
  position: relative;
}
@media (max-width: 992px) {
  header .header-Right .cs_WelcomeSignIn .nologin .cs_shoppingCart .add-cart img {
    width: initial;
  }
}
header .header-Right .cs_WelcomeSignIn .nologin .cs_shoppingCart .add-cart .cs_cartNumber {
  position: absolute;
  top: -8px;
  background: #ee2128;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  right: -12px;
}
@media (max-width: 992px) {
  header .header-Right .cs_WelcomeSignIn .nologin #PProfile {
    margin-bottom: 5px;
    position: absolute;
    top: 60px;
    right: 100px;
  }
  header .header-Right .cs_WelcomeSignIn .nologin #PProfile a {
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  header .header-Right .cs_WelcomeSignIn .nologin #PProfile {
    top: 70px;
  }
}
@media (max-width: 992px) {
  header .header-Right .cs_WelcomeSignIn .nologin .cs_welcomeMessage {
    position: absolute;
    top: 60px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  header .header-Right .cs_WelcomeSignIn .nologin .cs_welcomeMessage {
    top: 70px;
  }
}
header .header-Right .cs_WelcomeSignIn .nologin .cs_welcomeMessage .btn:hover span {
  color: #212529 !important;
}
header .header-Bottom {
  width: 100%;
}
@media (max-width: 992px) {
  header .header-Bottom .cs_hearderRow3.fixed {
    top: initial;
    left: 0;
    position: absolute;
    margin-top: 70px;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav {
    padding-top: 0;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li {
    background: #ed2127;
    padding: 0 !important;
    position: relative;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li:hover {
    background: #dd1218;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li:hover a {
    color: #fff;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li a {
    color: #fff;
    padding-right: calc((100% - var(--siteWidth)) / 2) !important;
    padding-left: calc((100% - var(--siteWidth)) / 2) !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li a::after {
    display: none !important;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li a .fa {
    display: none;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li .sub_nav {
    padding: 0 !important;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li .sub_nav .nav_column_list {
    display: initial;
    padding: 0;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li .sub_nav .nav_column_list .li_heading {
    margin-right: 0;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li .sub_nav .nav_column_list .li_heading .nav_column {
    margin: 0 !important;
    padding: 0 !important;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li .sub_nav .nav_column_list .li_heading .nav_column .nav_column_heading > a {
    margin: 0;
    position: relative;
    border-bottom: 0;
    padding: 10px 10px 10px 30px !important;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li .sub_nav .nav_column_list .li_heading .nav_column .nav_column_heading > a::after {
    transition: 0.1s linear width;
    width: calc(100% - 15px);
    content: "";
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #fff;
    transform: translateX(-50%);
    display: initial !important;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li .sub_nav .nav_column_list .li_heading .nav_column .nav_column_heading > a > img {
    display: none;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li .sub_nav .nav_column_list .li_heading:last-of-type .nav_column .nav_column_heading a::after {
    display: none !important;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li:last-of-type a::after {
    display: none !important;
  }
  header .header-Bottom .cs_hearderRow3.fixed .main_nav .main_li::after {
    transition: 0.1s linear width;
    width: calc(100% - 15px);
    content: "";
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #fff;
    transform: translateX(-50%);
    display: initial !important;
  }
}
@media (max-width: 767px) {
  header .header-Bottom .cs_hearderRow3.fixed {
    margin-top: 100px;
  }
}
header .header-Bottom .nav {
  visibility: initial;
}
header .header-Bottom .nav .main_nav {
  visibility: initial;
}
header .header-Bottom .nav .main_nav .main_li {
  padding: 25px;
}
header .header-Bottom .nav .main_nav .main_li.aboutMenu .sub_nav {
  left: initial;
  transform: initial;
}
header .header-Bottom .nav .main_nav .main_li.aboutMenu .sub_nav .nav_column_list {
  grid-auto-flow: row;
}
header .header-Bottom .nav .main_nav .main_li.aboutMenu .sub_nav .nav_column_list .li_heading:not(:last-of-type) .nav_column_heading a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
}
header .header-Bottom .nav .main_nav .main_li.aboutMenu .sub_nav .nav_column_list .li_heading:last-of-type .nav_column_heading a {
  border-bottom: 0 !important;
}
header .header-Bottom .nav .main_nav .main_li:hover > div > a {
  color: #ed2127;
}
header .header-Bottom .nav .main_nav .main_li:hover > div > a:after {
  display: none;
}
header .header-Bottom .nav .main_nav .main_li > div {
  visibility: initial;
}
header .header-Bottom .nav .main_nav .main_li > div > a {
  color: #133c68;
  font-weight: 800;
  font-family: Mulish;
  font-size: 17px;
  cursor: pointer;
}
header .header-Bottom .nav .main_nav .main_li > div > a .fa {
  display: initial;
  font-size: 20px;
  padding-left: 5px;
  color: #ed2127;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav {
  height: initial;
  padding: 10px 0 10px 20px;
  width: 700px;
  max-width: 100%;
  background: #ed2127;
  margin-top: 14px;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list {
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  display: grid;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading {
  margin-right: 20px;
  padding-bottom: 0;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading:nth-of-type(5n) {
  visibility: initial;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading:nth-of-type(5n) .nav_column .nav_column_heading > a {
  border-bottom: 0;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading .nav_column {
  visibility: initial;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading .nav_column .nav_column_heading {
  margin: 0;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading .nav_column .nav_column_heading > a {
  color: #fff;
  font-size: 16px;
  font-family: Mulish;
  font-weight: 400;
  padding: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  width: 100%;
  display: block;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading .nav_column .nav_column_heading > a:hover {
  background-color: #dd1218;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading .nav_column .nav_column_heading > a > img {
  max-width: 20px;
  margin-right: 5px;
  max-height: 20px;
}
header .header-Bottom .nav .main_nav .main_li > div .sub_nav .nav_column_list .li_heading .nav_column .nav_column_heading > a .fa {
  visibility: initial;
}

.cs_body {
  visibility: initial;
  padding-top: 0; /* Set dynamically by JS */
  background: #F7FAFC;
}
.cs_body .topCarousel {
  visibility: initial;
}
.cs_body .topCarousel .carousel-item {
  visibility: initial;
}
.cs_body .topCarousel .carousel-item > img {
  visibility: initial;
}
.cs_body .topCarousel .carousel-item .overlay {
  width: 100%;
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
}
.cs_body .topCarousel .carousel-item .overlay .text {
  visibility: initial;
  display: flex;
  justify-content: start;
  align-items: start;
  position: relative;
  flex-direction: column;
}
.cs_body .topCarousel .carousel-item .overlay .text h1 {
  width: calc(90% - 300px);
}
@media (max-width: 1200px) {
  .cs_body .topCarousel .carousel-item .overlay .text h1 {
    width: calc(90% - 150px);
  }
}
.cs_body .topCarousel .carousel-item .overlay .text .btn {
  width: 115px;
  border-radius: 3px;
  margin-top: 1vh;
}
.cs_body .topCarousel .carousel-item .overlay .text .btn:hover {
  color: #212529 !important;
}
@media (max-width: 1200px) {
  .cs_body .topCarousel .carousel-item .overlay .text .btn {
    right: 0;
    padding: 5px 15px !important;
  }
}

.homePageTags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 50px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .homePageTags {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .homePageTags {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.homePageTags a:hover {
  cursor: pointer;
}
.homePageTags a:hover .text {
  color: #ee2128;
}
.homePageTags .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .homePageTags .tag {
    width: 50%;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .homePageTags .tag {
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.homePageTags .tag img {
  visibility: initial;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .homePageTags .tag img {
    max-width: 100px;
  }
}
.homePageTags .tag .text {
  line-height: initial;
  color: #133c68;
  display: block;
}
@media (max-width: 767px) {
  .homePageTags .tag .text {
    width: calc(100% - 100px);
    padding-left: 10px;
  }
}
.homePageTags .tag .text .heading {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 767px) {
  .homePageTags .tag .text .heading {
    font-size: 17px;
  }
}
.homePageTags .tag .text .paragraph {
  display: block;
  font-size: 15px;
}
@media (max-width: 767px) {
  .homePageTags .tag .text .paragraph {
    font-size: 14px;
  }
}
.homePageTags.deliverySection {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 0;
  margin-top: 0;
}

.newArrivalsCards {
  display: flex;
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .newArrivalsCards {
    display: none;
  }
}
.newArrivalsCards .card {
  width: calc(50% - 10px);
  border: 0;
  border-radius: 0;
  background: initial;
  position: relative;
  text-decoration: none;
}
.newArrivalsCards .card.white {
  visibility: initial;
}
.newArrivalsCards .card.white .link {
  color: #fff;
}
.newArrivalsCards .card.white:hover .link {
  color: #000000;
}
.newArrivalsCards .card.blue .link {
  color: #032a6b;
}
.newArrivalsCards .card.blue .link .fa {
  color: #ed2127;
}
.newArrivalsCards .card.blue:hover .link {
  color: #ed2127;
}
.newArrivalsCards .card img {
  visibility: initial;
}
.newArrivalsCards .card .link {
  font-weight: 300;
  font-size: 20px;
  display: inline-block;
  margin: 10px auto 20px;
}
.newArrivalsCards .card .link:hover {
  text-decoration: none;
}
.newArrivalsCards .card .link .fa {
  font-size: 25px;
  display: none;
}

.container_ShopOnline {
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
  padding-top: 0;
}
@media (max-width: 992px) {
  .container_ShopOnline {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.container_ShopOnline .grid-4 {
  margin-top: 0 !important;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .container_ShopOnline .grid-4 {
    flex-wrap: wrap;
    margin-top: 0 !important;
    grid-gap: 20px !important;
  }
}
.container_ShopOnline .grid-4 .card_ShopOnline {
  border: 0 !important;
  width: calc(25% - 10px);
  background: url("../../Images/categoryBG.jpg") no-repeat;
  background-size: 100% 100%;
  min-height: initial !important;
  height: initial !important;
  justify-content: space-between !important;
  text-decoration: none !important;
  align-items: self-start !important;
}
@media (max-width: 1200px) {
  .container_ShopOnline .grid-4 .card_ShopOnline {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .container_ShopOnline .grid-4 .card_ShopOnline {
    width: 100%;
    min-height: 330px !important;
  }
}
.container_ShopOnline .grid-4 .card_ShopOnline .text_ShopOnline {
  font-weight: 900;
  color: #032a6b;
  text-align: left;
  left: 10px;
  top: 10px !important;
  font-size: 28px !important;
  text-transform: uppercase;
  position: initial !important;
  padding: 15px;
}
@media (max-width: 992px) {
  .container_ShopOnline .grid-4 .card_ShopOnline .text_ShopOnline {
    font-size: 22px !important;
  }
}
.container_ShopOnline .grid-4 .card_ShopOnline .image_ShopOnline {
  width: initial;
  min-width: 200px;
  min-width: initial !important;
  margin: 0 auto;
  max-width: 100%;
  padding: 10px;
}
.container_ShopOnline .grid-4 .card_ShopOnline .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  z-index: 1;
  display: none;
}
.container_ShopOnline .grid-4 .card_ShopOnline .btn .fa {
  display: none;
}
.container_ShopOnline .grid-4 .card_ShopOnline:hover .btn {
  display: block;
}
.container_ShopOnline .grid-4 .card_ShopOnline:hover:after {
  content: "";
  background-color: rgba(141, 174, 230, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
}

.productListSection {
  border-top: 5px solid #ee2128;
  background: #f9f9f9 !important;
}
.productListSection .sectionheading {
  font-weight: 900 !important;
  font-size: 48px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .productListSection .sectionheading {
    font-size: 26px !important;
    align-items: start;
  }
}
.productListSection .sectionheading img {
  margin-right: 15px;
}
@media (max-width: 992px) {
  .productListSection .sectionheading img {
    margin-right: 5px;
  }
}
.productListSection .productList {
  padding: 0 50px;
  --pCount: 6;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(var(--count), 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
@media (max-width: 1200px) {
  .productListSection .productList {
    --pCount: 4;
    padding: 0 25px;
  }
}
@media (max-width: 1024px) {
  .productListSection .productList {
    --pCount: 3;
    padding: 0 15px;
    padding-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .productListSection .productList {
    --pCount: 2;
    padding: 0;
    padding-bottom: 10px;
  }
}
.productListSection .productList .owl-stage {
  display: flex;
}
.productListSection .productList .owl-item {
  visibility: inherit;
}
.productListSection .productList .owl-nav {
  display: none !important;
}
.productListSection .productList .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.productListSection .productList .owl-dots .owl-dot {
  height: 15px;
  width: 15px;
  background: #cbcbcb;
  border-radius: 100%;
  margin: 0 3px;
}
.productListSection .productList .owl-dots .owl-dot.active {
  background: #adadad;
}
.productListSection .productList .productBlock {
  padding: 15px;
  border-bottom: 0;
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}
.productListSection .productList .productBlock .special-order {
  right: 5px;
  top: 35px;
  width: 23px;
  display: none;
}
.productListSection .productList .productBlock .productImage {
  width: 100%;
  background: #fff;
  padding: 15px;
  border-radius: 3px;
  height: 300px;
}
.productListSection .productList .productBlock .productImage a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
.productListSection .productList .productBlock .productImage a .btn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
}
.productListSection .productList .productBlock .productImage a:hover .btn {
  display: inline-block;
}
.productListSection .productList .productBlock .productImage img {
  max-width: 100%;
  max-height: 100%;
}
.productListSection .productList .productBlock .pBottom {
  visibility: initial;
}
.productListSection .productList .productBlock .productName {
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  padding: 7px;
}
.productListSection .productList .productBlock .priceAndAddtoCart {
  margin-top: auto;
  border-top: 1px solid rgba(197, 197, 197, 0.54);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  z-index: 1;
}
@media (max-width: 767px) {
  .productListSection .productList .productBlock .priceAndAddtoCart {
    flex-direction: column;
  }
}
.productListSection .productList .productBlock .priceAndAddtoCart .productPrice {
  font-weight: 800;
  font-size: 14px;
}
@media (max-width: 767px) {
  .productListSection .productList .productBlock .priceAndAddtoCart .productPrice {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.productListSection .productList .productBlock .priceAndAddtoCart .productPrice .price {
  visibility: initial;
}
.productListSection .productList .productBlock .priceAndAddtoCart .addtoCart {
  display: flex;
  align-items: center;
}
.productListSection .productList .productBlock .priceAndAddtoCart .addtoCart .txtBox {
  width: 40px;
  height: 30px;
  margin-right: 5px;
  border-radius: 3px;
  border: 1px solid rgba(197, 197, 197, 0.54);
  text-align: center;
  font-size: 12px;
  -moz-appearance: textfield;
}
.productListSection .productList .productBlock .priceAndAddtoCart .addtoCart .txtBox::-webkit-outer-spin-button, .productListSection .productList .productBlock .priceAndAddtoCart .addtoCart .txtBox::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.productListSection .productList .productBlock .priceAndAddtoCart .addtoCart .btn {
  padding: 5px;
  font-size: 12px;
  border-radius: 3px;
  height: 30px;
}
@media (max-width: 767px) {
  .productListSection .productList .productBlock .priceAndAddtoCart .addtoCart .btn {
    font-size: 10px;
  }
}
.productListSection .productList .productBlock:hover {
  background-color: rgba(141, 174, 230, 0.3);
}
.productListSection .productList .productBlock:hover .productImage {
  padding: 0;
}
.productListSection .productList .productBlock:hover .productImage a {
  position: relative;
  padding: 15px;
}
.productListSection .productList .productBlock:hover .productImage a:after {
  content: "";
  background-color: rgba(141, 174, 230, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.productListSection .productList.relatedProducts .owl-item .productBlock {
  width: 100%;
  max-width: 100% !important;
}

.supplyBusinessAndBeyond {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond {
    flex-direction: column;
    display: flex;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}
.supplyBusinessAndBeyond .sectionheading {
  font-weight: 900 !important;
  font-size: 48px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 20px;
  color: #133c68;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .sectionheading {
    font-size: 26px !important;
    align-items: start;
  }
}
.supplyBusinessAndBeyond .sectionheading img {
  margin-right: 15px;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .sectionheading img {
    margin-right: 5px;
  }
}
.supplyBusinessAndBeyond .twoCards,
.supplyBusinessAndBeyond .threeCards {
  display: flex;
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .twoCards,
  .supplyBusinessAndBeyond .threeCards {
    flex-wrap: wrap;
  }
}
.supplyBusinessAndBeyond .twoCards .card,
.supplyBusinessAndBeyond .threeCards .card {
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .twoCards .card,
  .supplyBusinessAndBeyond .threeCards .card {
    width: 100% !important;
    margin-right: 0 !important;
  }
}
.supplyBusinessAndBeyond .twoCards .card .bgImg,
.supplyBusinessAndBeyond .threeCards .card .bgImg {
  visibility: initial;
}
.supplyBusinessAndBeyond .twoCards .card .overlay,
.supplyBusinessAndBeyond .threeCards .card .overlay {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 20px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.supplyBusinessAndBeyond .twoCards .card .overlay .heading,
.supplyBusinessAndBeyond .threeCards .card .overlay .heading {
  color: #fff;
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .supplyBusinessAndBeyond .twoCards .card .overlay .heading,
  .supplyBusinessAndBeyond .threeCards .card .overlay .heading {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .twoCards .card .overlay .heading,
  .supplyBusinessAndBeyond .threeCards .card .overlay .heading {
    font-size: 22px;
  }
}
.supplyBusinessAndBeyond .twoCards .card .overlay .paragraph,
.supplyBusinessAndBeyond .threeCards .card .overlay .paragraph {
  color: #fff;
  font-weight: 300;
  font-size: 22px;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .twoCards .card .overlay .paragraph,
  .supplyBusinessAndBeyond .threeCards .card .overlay .paragraph {
    font-size: 18px;
  }
}
.supplyBusinessAndBeyond .twoCards .card .overlay .overlayImg,
.supplyBusinessAndBeyond .threeCards .card .overlay .overlayImg {
  visibility: initial;
}
.supplyBusinessAndBeyond .twoCards .card .overlay .btn,
.supplyBusinessAndBeyond .threeCards .card .overlay .btn {
  border-radius: 3px;
}
.supplyBusinessAndBeyond .twoCards {
  visibility: initial;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .twoCards {
    order: 3;
    padding: 0 !important;
  }
}
.supplyBusinessAndBeyond .twoCards .card {
  width: calc(50% - 10px);
  margin-right: 20px;
  position: relative;
}
.supplyBusinessAndBeyond .twoCards .card:hover:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
}
.supplyBusinessAndBeyond .twoCards .card:hover .overlay {
  z-index: 1;
}
.supplyBusinessAndBeyond .twoCards .card:nth-of-type(2) {
  margin-right: 0;
}
.supplyBusinessAndBeyond .twoCards .card .bgImg {
  visibility: initial;
}
.supplyBusinessAndBeyond .twoCards .card .overlay {
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .twoCards .card .overlay {
    padding-right: calc((100% - var(--siteWidth)) / 2) !important;
    padding-left: calc((100% - var(--siteWidth)) / 2) !important;
  }
}
.supplyBusinessAndBeyond .twoCards .card .overlay .heading {
  visibility: initial;
}
.supplyBusinessAndBeyond .twoCards .card .overlay .paragraph {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .supplyBusinessAndBeyond .twoCards .card .overlay .paragraph {
    margin-bottom: 15px;
  }
}
.supplyBusinessAndBeyond .twoCards .card .overlay .btn {
  visibility: initial;
}
.supplyBusinessAndBeyond .threeCards {
  visibility: initial;
}
@media (max-width: 1200px) {
  .supplyBusinessAndBeyond .threeCards {
    flex-wrap: wrap;
  }
}
.supplyBusinessAndBeyond .threeCards .card {
  width: calc(50% - 10px);
  margin-right: 20px;
  position: relative;
  min-height: 350px;
  display: block;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .supplyBusinessAndBeyond .threeCards .card {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  .supplyBusinessAndBeyond .threeCards .card:nth-of-type(2) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .supplyBusinessAndBeyond .threeCards .card {
    min-height: 250px;
  }
}
.supplyBusinessAndBeyond .threeCards .card:hover .overlay:after {
  content: "";
  background-color: rgba(3, 47, 94, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.supplyBusinessAndBeyond .threeCards .card:hover .overlay .btn {
  display: inline-block;
}
.supplyBusinessAndBeyond .threeCards .card:hover .overlay .btn {
  z-index: 1;
}
.supplyBusinessAndBeyond .threeCards .card:nth-of-type(3) {
  margin-right: 0;
}
.supplyBusinessAndBeyond .threeCards .card .bgImg {
  min-height: 100%;
  min-width: 100%;
}
@media (max-width: 767px) {
  .supplyBusinessAndBeyond .threeCards .card .bgImg {
    position: absolute;
  }
}
.supplyBusinessAndBeyond .threeCards .card .overlay {
  justify-content: initial;
}
@media (max-width: 767px) {
  .supplyBusinessAndBeyond .threeCards .card .overlay {
    position: relative;
    transform: initial;
    background: none;
    left: initial;
    top: initial;
  }
}
.supplyBusinessAndBeyond .threeCards .card .overlay .heading {
  visibility: initial;
}
.supplyBusinessAndBeyond .threeCards .card .overlay .overlayImg {
  margin: 0 auto;
  max-width: 100%;
  margin-top: auto;
  height: initial;
  max-height: initial;
}
@media (max-width: 992px) {
  .supplyBusinessAndBeyond .threeCards .card .overlay .overlayImg {
    height: initial;
    max-width: 100%;
    padding: 10px;
  }
}
.supplyBusinessAndBeyond .threeCards .card .overlay .btn {
  margin-top: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  display: none;
}

.givingBack {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .givingBack {
    flex-direction: column;
    margin-bottom: 25px;
  }
}
.givingBack .left {
  background: url(../../Images/orangeBG.jpg) no-repeat;
  width: 50%;
  background-size: cover;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
  padding-right: 50px;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 992px) {
  .givingBack .left {
    width: 100%;
    padding: 25px 0;
    min-height: 250px;
  }
}
.givingBack .left .heading {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .givingBack .left .heading {
    font-size: 34px;
    line-height: 44px;
  }
}
.givingBack .left .paragraph {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .givingBack .left .paragraph {
    font-size: 22px;
    line-height: 22px;
  }
}
.givingBack .left .btn {
  border: 1px solid #fff;
  border-radius: 3px;
  margin-top: 30px;
}
.givingBack .left .btn:hover {
  background: #fff;
  color: #ee2128;
}
.givingBack .right {
  width: 50%;
}
@media (max-width: 992px) {
  .givingBack .right {
    width: 100%;
    height: 275px;
    overflow: hidden;
  }
}
.givingBack .right img {
  width: 100%;
}
@media (max-width: 992px) {
  .givingBack .right img {
    height: 100%;
    width: initial;
    min-width: 100%;
  }
}
.givingBack.government .left {
  background: url(../../Images/orangeBGGovernment.png) no-repeat;
}

.vendorsList {
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
  padding-bottom: 50px;
}
@media (max-width: 992px) {
  .vendorsList {
    padding-bottom: 15px;
  }
}
.vendorsList .heading {
  color: #163f6d;
  font-weight: 700;
  font-size: 20px;
}
.vendorsList .vendors {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vendorsList .vendors img {
  visibility: initial;
}
.vendorsList .owl-stage {
  display: flex;
}
.vendorsList .owl-item {
  visibility: inherit;
}
.vendorsList .owl-nav {
  display: none !important;
}
.vendorsList .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.vendorsList .owl-dots .owl-dot {
  height: 15px;
  width: 15px;
  background: #cbcbcb;
  border-radius: 100%;
  margin: 0 3px;
}
.vendorsList .owl-dots .owl-dot.active {
  background: #adadad;
}

#UPShoppingCart > .similar-checkout-div {
  left: 0;
  border: 0;
}

.stayConnectedSection {
  background: #ee2128 url(../../Images/stayConnectedBG.jpg) no-repeat;
  background-size: cover;
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: flex-start;
}
.stayConnectedSection .connectedText {
  visibility: initial;
}
@media (max-width: 767px) {
  .stayConnectedSection .connectedText {
    margin-bottom: 30px;
  }
}
.stayConnectedSection .connectedText .heading {
  font-size: 26px;
  font-weight: 900;
}
.stayConnectedSection .connectedText .paragraph {
  font-size: 22px;
}
.stayConnectedSection .textSection {
  width: 30%;
  margin-left: 50px;
  position: relative;
  max-width: 480px;
}
@media (max-width: 767px) {
  .stayConnectedSection .textSection {
    width: calc(100% - 110px);
    margin-left: 0;
    max-width: 480px;
  }
}
.stayConnectedSection .textSection .txtBox {
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  outline: none;
  box-shadow: none;
}
.stayConnectedSection .textSection .txtBox::placeholder {
  color: #fff;
  font-size: 22px;
}
.stayConnectedSection .textSection .ValidationError {
  top: initial;
  bottom: -18px;
}
.stayConnectedSection .btnSection {
  visibility: initial;
}
@media (max-width: 767px) {
  .stayConnectedSection .btnSection {
    width: 100px;
  }
}
.stayConnectedSection .btnSection .btn {
  border-radius: 3px;
  min-width: 100px;
}
.stayConnectedSection .btnSection .btn:hover {
  background: #fff;
  color: #ee2128;
}

footer {
  background: #fff;
  --logoWidth: 350px;
  padding: 0;
  padding-top: 50px;
}
footer .footer_columns {
  display: flex;
  padding: 10px 50px 20px;
  flex-wrap: wrap;
  grid-gap: 0;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .footer_columns {
    padding-right: calc((100% - var(--siteWidth)) / 2) !important;
    padding-left: calc((100% - var(--siteWidth)) / 2) !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
footer .footer_columns .footer_column {
  width: calc((100% - 2 * var(--logoWidth)) / 4);
}
@media (max-width: 1400px) {
  footer .footer_columns .footer_column {
    width: calc((100% - var(--logoWidth)) / 3);
    margin-top: 15px;
  }
}
@media (max-width: 1200px) {
  footer .footer_columns .footer_column {
    width: calc((100% - var(--logoWidth)) / 2);
  }
}
@media (max-width: 992px) {
  footer .footer_columns .footer_column {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column {
    width: 50%;
  }
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column {
    padding-right: 5px;
    padding-left: 5px;
  }
}
footer .footer_columns .footer_column.logos {
  width: var(--logoWidth);
}
@media (max-width: 992px) {
  footer .footer_columns .footer_column.logos {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1400px) {
  footer .footer_columns .footer_column.logos.candianCouncil {
    margin-left: var(--logoWidth);
    margin-top: 15px;
  }
}
@media (max-width: 1200px) {
  footer .footer_columns .footer_column.logos.candianCouncil {
    margin-left: initial;
  }
}
@media (max-width: 1200px) {
  footer .footer_columns .footer_column.logos.candianCouncil {
    width: calc((100% - var(--logoWidth)) / 2);
  }
}
@media (max-width: 992px) {
  footer .footer_columns .footer_column.logos.candianCouncil {
    width: 100%;
  }
  footer .footer_columns .footer_column.logos.candianCouncil a {
    max-width: 100%;
    display: block;
  }
  footer .footer_columns .footer_column.logos.candianCouncil a img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column.logos.candianCouncil {
    width: 50%;
    text-align: left;
  }
}
footer .footer_columns .footer_column.logos .logo {
  visibility: initial;
}
footer .footer_columns .footer_column.logos .logo a {
  text-decoration: none !important;
}
footer .footer_columns .footer_column.logos .logo a img {
  visibility: initial;
}
footer .footer_columns .footer_column.list {
  visibility: initial;
}
footer .footer_columns .footer_column.list h1 {
  visibility: initial;
}
footer .footer_columns .footer_column.list ul {
  visibility: initial;
}
footer .footer_columns .footer_column.list ul li {
  visibility: initial;
}
footer .footer_columns .footer_column.list ul li a {
  color: #404040;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
}
footer .footer_columns .footer_column.list ul li a:hover {
  color: #cc040b;
}
footer .footer_columns .footer_column.list ul li.newsContact {
  margin-top: 15px;
}
footer .footer_columns .footer_column.list ul li.newsContact a {
  color: #163f6e;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}
footer .footer_columns .footer_column.list ul li.newsContact a:hover {
  color: #cc040b;
}
footer .footer_columns .footer_column.contactInfo {
  visibility: initial;
}
@media (max-width: 1200px) {
  footer .footer_columns .footer_column.contactInfo {
    margin-left: var(--logoWidth);
  }
}
@media (max-width: 992px) {
  footer .footer_columns .footer_column.contactInfo {
    margin-left: 0;
  }
}
footer .footer_columns .footer_column.contactInfo h1 {
  visibility: initial;
}
footer .footer_columns .footer_column.contactInfo .address {
  visibility: initial;
}
footer .footer_columns .footer_column.contactInfo .address a {
  color: #404040;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
}
footer .footer_columns .footer_column.contactInfo .address a:hover {
  color: #cc040b;
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column.contactInfo .address a {
    font-size: 14px;
  }
}
footer .footer_columns .footer_column.contactInfo .phone,
footer .footer_columns .footer_column.contactInfo .email {
  visibility: initial;
}
footer .footer_columns .footer_column.contactInfo .phone a,
footer .footer_columns .footer_column.contactInfo .email a {
  color: #cc040b;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column.contactInfo .phone a,
  footer .footer_columns .footer_column.contactInfo .email a {
    font-size: 14px;
  }
}
footer .footer_columns .footer_column.contactInfo .phone a:hover,
footer .footer_columns .footer_column.contactInfo .email a:hover {
  color: #404040;
}
footer .footer_columns .footer_column.paymentMethods {
  margin-left: var(--logoWidth);
  width: calc(2 * (100% - 2 * var(--logoWidth)) / 3);
}
@media (max-width: 992px) {
  footer .footer_columns .footer_column.paymentMethods {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
footer .footer_columns .footer_column.paymentMethods img {
  visibility: initial;
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column.paymentMethods img {
    max-width: 80%;
  }
}
footer .footer_columns .footer_column.socialMedia {
  display: flex;
  width: calc((100% - 2 * var(--logoWidth)) / 3 + var(--logoWidth));
}
@media (max-width: 1400px) {
  footer .footer_columns .footer_column.socialMedia {
    margin-left: var(--logoWidth);
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  footer .footer_columns .footer_column.socialMedia {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}
footer .footer_columns .footer_column.socialMedia a {
  display: flex;
  align-items: center;
  margin-right: 25px;
  text-decoration: none !important;
}
@media (max-width: 1600px) {
  footer .footer_columns .footer_column.socialMedia a {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column.socialMedia a {
    margin-right: 5px;
  }
}
footer .footer_columns .footer_column.socialMedia a:hover > div {
  color: #ee2128;
}
footer .footer_columns .footer_column.socialMedia a:hover > div .blue {
  color: #ee2128;
}
footer .footer_columns .footer_column.socialMedia a img {
  margin-right: 5px;
}
footer .footer_columns .footer_column.socialMedia a > div {
  color: #404040;
  font-size: 13px;
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column.socialMedia a > div {
    font-size: 10px;
  }
}
footer .footer_columns .footer_column.socialMedia a > div .blue {
  color: #163f6e;
  font-weight: 800;
  text-transform: uppercase;
}
footer .footer_columns .footer_column h1 {
  color: #163f6d;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  footer .footer_columns .footer_column h1 {
    font-size: 16px;
  }
}
footer .copyRightStrip {
  background: #0e194a;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: calc((100% - var(--siteWidth)) / 2) !important;
  padding-left: calc((100% - var(--siteWidth)) / 2) !important;
}
@media (max-width: 767px) {
  footer .copyRightStrip {
    text-align: center;
    font-size: 10px;
  }
}
footer .copyRightStrip a {
  color: #fff;
  text-decoration: none !important;
}
footer .copyRightStrip a:hover {
  color: #ee2128;
}

.topCarousel {
  visibility: initial;
  visibility: initial;
}
@media (max-width: 1024px) {
  .topCarousel {
    height: 350px;
  }
}
.topCarousel #topCarousel.carousel {
  visibility: initial;
  height: 100%;
}
.topCarousel #topCarousel.carousel ol.carousel-indicators {
  margin-bottom: 0;
  bottom: 15px;
}
.topCarousel #topCarousel.carousel ol.carousel-indicators.hide {
  visibility: initial;
}
.topCarousel #topCarousel.carousel ol.carousel-indicators.hide li {
  visibility: initial;
}
.topCarousel #topCarousel.carousel ol.carousel-indicators.hide li.active {
  visibility: initial;
}
.topCarousel #topCarousel.carousel .carousel-inner {
  visibility: initial;
}
@media (max-width: 1024px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item {
    height: 350px;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item.active {
  visibility: initial;
}
@media (max-width: 767px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item img {
  visibility: initial;
}
@media (max-width: 1024px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item img {
    min-height: 100%;
    min-width: 100%;
    max-height: initial !important;
    max-width: initial;
    float: right;
  }
}
@media (max-width: 992px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item img {
    max-height: 350px;
    width: initial !important;
  }
}
@media (max-width: 767px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item img {
    max-height: 350px;
    width: initial !important;
    min-width: initial;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay {
  position: absolute;
  z-index: 1;
  bottom: 15px;
  max-width: 100%;
  left: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 50px 5%;
  height: initial;
  top: initial;
  transform: initial;
}
@media (max-width: 992px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    right: initial;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay {
    padding: 15px;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .break {
  visibility: initial;
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay.right {
  right: 0;
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text h1 {
  font-size: 40px;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text h1 {
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text h1 {
    font-size: 24px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text h1 {
    font-size: 28px;
  }
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text h1 br {
    display: none;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text h2 {
  color: #187597;
}
@media (max-width: 1200px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text h2 {
    font-size: 18px;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text p {
  font-size: 35px;
  color: #475057;
}
@media (max-width: 1400px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text p {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text p {
    font-size: 14px;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text .orangeLine {
  margin: 25px 0;
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text .bannerLink_internal {
  font-size: 16px;
  height: initial;
  padding: 10px 15px;
}
@media (max-width: 1200px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text .bannerLink_internal {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text .bannerLink_internal {
    bottom: -25px;
  }
}
@media (max-width: 767px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .text .bannerLink_internal {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .buttons {
  display: flex;
  justify-content: space-between;
  min-width: 800px;
}
@media (max-width: 767px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .buttons {
    min-width: initial;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .buttons .buttonContainer {
  visibility: initial;
}
@media (max-width: 767px) {
  .topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .buttons .buttonContainer:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.topCarousel #topCarousel.carousel .carousel-inner .carousel-item .overlay .buttons .buttonContainer .btn {
  min-width: 150px;
  font-size: 14px;
  box-shadow: none;
}
.topCarousel .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 100%;
}
.topCarousel .carousel-control {
  width: 10%;
}
.topCarousel .carousel-control.left, .topCarousel .carousel-control.right {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .productListPage .breadcrumbAndSearchBar,
  .subCategoriesPage .breadcrumbAndSearchBar {
    padding-right: 100px;
  }
  .productListPage .productFilterSection,
  .subCategoriesPage .productFilterSection {
    width: 100px !important;
    position: absolute !important;
    top: 155px;
    margin: 0 !important;
    right: 0;
    padding-right: 0 !important;
    z-index: 9;
  }
  .productListPage .productFilterSection .filterMenuToggle,
  .subCategoriesPage .productFilterSection .filterMenuToggle {
    font-size: 16px !important;
    padding: 4px;
    margin-bottom: 0;
    line-height: 30px;
  }
  .productListPage .productFilterSection .filterInner,
  .subCategoriesPage .productFilterSection .filterInner {
    width: 100vw !important;
    right: 0;
  }
  .productListPage .productFilterSection .filterInner .filterTab,
  .subCategoriesPage .productFilterSection .filterInner .filterTab {
    padding: 0 !important;
  }
  .productListPage .productFilterSection .filterInner .filterTab .tabLabel,
  .subCategoriesPage .productFilterSection .filterInner .filterTab .tabLabel {
    padding: 15px;
  }
  .productListPage .productFilterSection .filterInner .filterTab .productFilterItems li,
  .subCategoriesPage .productFilterSection .filterInner .filterTab .productFilterItems li {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .productListPage .productFilterSection .filterInner .productFilterHeading,
  .subCategoriesPage .productFilterSection .filterInner .productFilterHeading {
    display: none;
  }
}

@media (min-width: 992px) {
  .productListPage.productList-list .productListSection .productList {
    --count: 1 !important;
    grid-gap: 0;
  }
  .productListPage.productList-list .productListSection .productList .productBlock {
    flex-direction: initial;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid rgba(197, 197, 197, 0.54);
    padding-bottom: 10px !important;
    padding-top: 10px !important;
  }
  .productListPage.productList-list .productListSection .productList .productBlock:hover .productImage {
    padding: 0 !important;
  }
  .productListPage.productList-list .productListSection .productList .productBlock:hover .productImage a {
    padding: 0 !important;
  }
  .productListPage.productList-list .productListSection .productList .productBlock .special-order {
    left: 5px;
    right: initial;
  }
  .productListPage.productList-list .productListSection .productList .productBlock .productImage {
    width: 200px;
    height: initial;
    padding: 0;
  }
  .productListPage.productList-list .productListSection .productList .productBlock .productName {
    width: calc(100% - 450px);
  }
  .productListPage.productList-list .productListSection .productList .productBlock .priceAndAddtoCart {
    width: 250px;
    margin-top: initial;
    border: 0;
    padding: 0;
  }
  .productListPage.productList-list .productListSection .productList .productBlock .BAddToFavouritesContainer {
    left: 10px;
  }
}

.productListPage .productListHeadingSection,
.subCategoriesPage .productListHeadingSection {
  margin: 35px auto;
  text-align: center;
  max-width: 768px;
}
.productListPage .productListHeadingSection h1,
.subCategoriesPage .productListHeadingSection h1 {
  font-weight: 900;
  border: 0;
  margin-bottom: 10px;
}
.productListPage .productListContainer,
.subCategoriesPage .productListContainer {
  margin-bottom: 10px;
}
.productListPage .productListContainer .productFilterSection,
.subCategoriesPage .productListContainer .productFilterSection {
  width: 250px;
  padding-right: 50px;
}
.productListPage .productListContainer .productFilterSection .filterInner,
.subCategoriesPage .productListContainer .productFilterSection .filterInner {
  visibility: initial;
}
.productListPage .productListContainer .productFilterSection .filterInner .productFilterHeading,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .productFilterHeading {
  background: #ee2128;
  text-transform: initial;
  font-weight: 400;
  padding: 7px;
  margin-bottom: 10px;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab {
  border: 1px solid #d1d1d1;
  padding: 7px;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab:not(:last-of-type),
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab:not(:last-of-type) {
  border-bottom: 0;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle {
  display: none;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle:checked,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle:checked {
  visibility: initial;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle:checked ~ .tabLabel,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle:checked ~ .tabLabel {
  color: #ee2128;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle:checked ~ .tabLabel:after,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle:checked ~ .tabLabel:after {
  content: "\f146";
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle:checked ~ .productFilterItems,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabToggle:checked ~ .productFilterItems {
  display: block;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabLabel,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabLabel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  cursor: pointer;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabLabel a,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabLabel a {
  color: #404040;
  text-decoration: none;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabLabel a:hover,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabLabel a:hover {
  color: #ee2128;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .tabLabel:after,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .tabLabel:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0fe";
  color: #ee2128;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems {
  display: none;
  padding-top: 10px;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul {
  margin-bottom: 0;
  max-height: 400px;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul:last-of-type li,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul:last-of-type li {
  border-bottom: 0;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul li,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul li {
  margin: 0px;
  padding: 0;
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul li a,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul li a {
  text-decoration: none;
  font-size: 12px;
}
.productListPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul li a:hover,
.subCategoriesPage .productListContainer .productFilterSection .filterInner .filterTab .productFilterItems ul li a:hover {
  color: #ee2128;
}
.productListPage .productListContainer .productListSection,
.subCategoriesPage .productListContainer .productListSection {
  width: calc(100% - 250px);
  margin: 0;
  border: 0;
  background: #fff !important;
  padding: 0;
}
@media (max-width: 767px) {
  .productListPage .productListContainer .productListSection,
  .subCategoriesPage .productListContainer .productListSection {
    width: 100%;
  }
}
.productListPage .productListContainer .productListSection .productList,
.subCategoriesPage .productListContainer .productListSection .productList {
  --count: 4;
  width: 100%;
  padding: 0;
  transition: all 0.5s linear;
}
@media (max-width: 1024px) {
  .productListPage .productListContainer .productListSection .productList,
  .subCategoriesPage .productListContainer .productListSection .productList {
    --count: 3;
    margin-left: initial;
  }
}
@media (max-width: 767px) {
  .productListPage .productListContainer .productListSection .productList,
  .subCategoriesPage .productListContainer .productListSection .productList {
    --count: 2;
  }
}
.productListPage .productListContainer .productListSection .productList .productBlock,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock {
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .productListPage .productListContainer .productListSection .productList .productBlock,
  .subCategoriesPage .productListContainer .productListSection .productList .productBlock {
    height: initial;
  }
}
.productListPage .productListContainer .productListSection .productList .productBlock .manufacturerName,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock .manufacturerName {
  color: #666666;
  font-weight: 300;
  font-size: 13px;
}
.productListPage .productListContainer .productListSection .productList .productBlock .BAddToFavouritesContainer,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock .BAddToFavouritesContainer {
  z-index: 9;
}
.productListPage .productListContainer .productListSection .productList .productBlock .BAddToFavouritesContainer .btnFavourite,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock .BAddToFavouritesContainer .btnFavourite {
  visibility: initial;
}
.productListPage .productListContainer .productListSection .productList .productBlock:hover,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock:hover {
  background-color: rgba(141, 174, 230, 0.3);
}
.productListPage .productListContainer .productListSection .productList .productBlock:hover:after,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock:hover:after {
  display: none;
}
.productListPage .productListContainer .productListSection .productList .productBlock:hover .productImage,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock:hover .productImage {
  padding: 0;
}
.productListPage .productListContainer .productListSection .productList .productBlock:hover .productImage a,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock:hover .productImage a {
  position: relative;
  padding: 15px;
}
.productListPage .productListContainer .productListSection .productList .productBlock:hover .productImage a:after,
.subCategoriesPage .productListContainer .productListSection .productList .productBlock:hover .productImage a:after {
  content: "";
  background-color: rgba(141, 174, 230, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.productListPage .productListContainer .productListSection .workCoverageSection,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection {
  width: 75%;
  margin-bottom: 50px;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .productListPage .productListContainer .productListSection .workCoverageSection,
  .subCategoriesPage .productListContainer .productListSection .workCoverageSection {
    width: 100%;
  }
}
.productListPage .productListContainer .productListSection .workCoverageSection .heading,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection .heading {
  color: #ed2127;
  font-size: 34px;
  padding-bottom: 15px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #dbdbdb;
}
.productListPage .productListContainer .productListSection .workCoverageSection .rowSection,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #dbdbdb;
}
.productListPage .productListContainer .productListSection .workCoverageSection .rowSection .left,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection .left {
  width: 200px;
  color: #133c68;
  font-weight: 700;
}
@media (max-width: 992px) {
  .productListPage .productListContainer .productListSection .workCoverageSection .rowSection .left,
  .subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection .left {
    width: 100px;
  }
}
.productListPage .productListContainer .productListSection .workCoverageSection .rowSection .left b,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection .left b {
  font-weight: 700;
  font-size: 20px;
  color: #133c68;
}
.productListPage .productListContainer .productListSection .workCoverageSection .rowSection .left div,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection .left div {
  visibility: initial;
}
.productListPage .productListContainer .productListSection .workCoverageSection .rowSection .right,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection .right {
  width: calc(100% - 200px);
  padding-left: 15px;
}
@media (max-width: 992px) {
  .productListPage .productListContainer .productListSection .workCoverageSection .rowSection .right,
  .subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection .right {
    width: calc(100% - 100px);
  }
}
.productListPage .productListContainer .productListSection .workCoverageSection .rowSection .right b,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection .right b {
  font-weight: 700;
  font-size: 20px;
}
.productListPage .productListContainer .productListSection .workCoverageSection .rowSection .right div,
.subCategoriesPage .productListContainer .productListSection .workCoverageSection .rowSection .right div {
  visibility: initial;
}
.productListPage.UC_RelatedProducts,
.subCategoriesPage.UC_RelatedProducts {
  border-top: 1px solid #d7d7d7;
  /* border-bottom: 1px solid #d7d7d7; */
  margin: 30px auto !important;
  padding: 30px 0 60px 0 !important;
  width: 100%;
}
.productListPage.UC_RelatedProducts .sectionHeading,
.subCategoriesPage.UC_RelatedProducts .sectionHeading {
  font-weight: 800;
  color: #163f6d;
  font-size: 18px;
  text-transform: uppercase;
}
.productListPage.UC_RelatedProducts .productListContainer .productListSection,
.subCategoriesPage.UC_RelatedProducts .productListContainer .productListSection {
  width: 100%;
}
.productListPage.menuPage,
.subCategoriesPage.menuPage {
  visibility: initial;
}
.productListPage.menuPage .menuList,
.subCategoriesPage.menuPage .menuList {
  visibility: initial;
}
.productListPage.menuPage .menuList .menuCategory:not(:last-of-type),
.subCategoriesPage.menuPage .menuList .menuCategory:not(:last-of-type) {
  border-bottom: 1px solid #dedede;
}
.productListPage.menuPage .menuList .menuCategory .heading,
.subCategoriesPage.menuPage .menuList .menuCategory .heading {
  color: #163f6d;
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.productListPage.menuPage .menuList .menuCategory ul.list,
.subCategoriesPage.menuPage .menuList .menuCategory ul.list {
  padding: 0;
  list-style: none;
  column-count: 3;
}
@media (max-width: 767px) {
  .productListPage.menuPage .menuList .menuCategory ul.list,
  .subCategoriesPage.menuPage .menuList .menuCategory ul.list {
    column-count: 2;
  }
}
.productListPage.menuPage .menuList .menuCategory ul.list li,
.subCategoriesPage.menuPage .menuList .menuCategory ul.list li {
  break-inside: avoid-column;
}
.productListPage.menuPage .menuList .menuCategory ul.list li a,
.subCategoriesPage.menuPage .menuList .menuCategory ul.list li a {
  text-decoration: none;
  color: #404040;
  font-size: 15px;
}
.productListPage.menuPage .menuList .menuCategory ul.list li a:hover,
.subCategoriesPage.menuPage .menuList .menuCategory ul.list li a:hover {
  color: #ed2127;
}
.productListPage.menuPage .productListSection,
.subCategoriesPage.menuPage .productListSection {
  width: calc(100% - 250px) !important;
}
@media (max-width: 1024px) {
  .productListPage.menuPage .productListSection,
  .subCategoriesPage.menuPage .productListSection {
    width: 100% !important;
  }
}
.productListPage.menuPage .filterTab .tabLabel::after,
.subCategoriesPage.menuPage .filterTab .tabLabel::after {
  display: none !important;
}
.productListPage.menuPage .filterTab .tabLabel:hover,
.subCategoriesPage.menuPage .filterTab .tabLabel:hover {
  color: #ee2128;
}
.productListPage.menuPage .categoryImg,
.subCategoriesPage.menuPage .categoryImg {
  margin-bottom: 50px;
}
.productListPage.menuPage .categoryImg img,
.subCategoriesPage.menuPage .categoryImg img {
  min-width: 100%;
}
@media (max-width: 1024px) {
  .productListPage.menuPage .categoryImg img,
  .subCategoriesPage.menuPage .categoryImg img {
    min-width: initial;
    max-width: 100%;
  }
}
.productListPage.menuPage .details,
.subCategoriesPage.menuPage .details {
  margin-bottom: 100px;
}
.productListPage.menuPage .details .heading,
.subCategoriesPage.menuPage .details .heading {
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #133c68;
}
.productListPage.menuPage .details .paragraph,
.subCategoriesPage.menuPage .details .paragraph {
  margin-bottom: 50px;
}
.productListPage.menuPage .details .paragraph p,
.subCategoriesPage.menuPage .details .paragraph p {
  color: #404040;
  font-size: 18px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .productListPage.menuPage .details .paragraph p,
  .subCategoriesPage.menuPage .details .paragraph p {
    font-size: 16px;
  }
}
.productListPage.menuPage .details .list,
.subCategoriesPage.menuPage .details .list {
  visibility: initial;
}
.productListPage.menuPage .details .list .item,
.subCategoriesPage.menuPage .details .list .item {
  display: flex;
  margin-bottom: 30px;
}
.productListPage.menuPage .details .list .item .image,
.subCategoriesPage.menuPage .details .list .item .image {
  width: 200px;
}
@media (max-width: 767px) {
  .productListPage.menuPage .details .list .item .image,
  .subCategoriesPage.menuPage .details .list .item .image {
    display: none;
  }
}
.productListPage.menuPage .details .list .item .image img,
.subCategoriesPage.menuPage .details .list .item .image img {
  width: 100%;
}
.productListPage.menuPage .details .list .item .text,
.subCategoriesPage.menuPage .details .list .item .text {
  width: calc(100% - 200px);
  padding-left: 25px;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .productListPage.menuPage .details .list .item .text,
  .subCategoriesPage.menuPage .details .list .item .text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .productListPage.menuPage .details .list .item .text,
  .subCategoriesPage.menuPage .details .list .item .text {
    width: 100%;
    padding-left: 0;
  }
}
.productListPage.menuPage .details .list .item .text strong,
.subCategoriesPage.menuPage .details .list .item .text strong {
  color: #163f6d;
  margin-bottom: 15px;
  display: block;
}
.productListPage.menuPage .details .list .item .text div,
.subCategoriesPage.menuPage .details .list .item .text div {
  visibility: initial;
}
.productListPage.menuPage .details .list .item .text div a,
.subCategoriesPage.menuPage .details .list .item .text div a {
  visibility: initial;
}
.productListPage.trainingPage .productListSection,
.subCategoriesPage.trainingPage .productListSection {
  width: 100% !important;
}
.productListPage.trainingPage .details .btnContainer,
.subCategoriesPage.trainingPage .details .btnContainer {
  text-align: center;
  margin-bottom: 50px;
}
.productListPage.trainingPage .details .btnContainer .btn,
.subCategoriesPage.trainingPage .details .btnContainer .btn {
  border-radius: 3px;
  padding: 5px 15px;
}

.breadcrumbAndSearchBar {
  visibility: initial;
}
.breadcrumbAndSearchBar .breadcrumb {
  width: calc(100% - 400px);
}
.breadcrumbAndSearchBar .breadcrumb > span {
  visibility: initial;
}
.breadcrumbAndSearchBar .breadcrumb > span a {
  color: #ee2128 !important;
  text-transform: uppercase;
  font-size: 15px;
}
@media (max-width: 767px) {
  .breadcrumbAndSearchBar .breadcrumb > span a {
    font-size: 12px;
  }
}
.breadcrumbAndSearchBar .breadcrumb > span::after {
  color: #404040 !important;
  font-weight: 100 !important;
  font-size: 18px !important;
}
.breadcrumbAndSearchBar .breadcrumb > span:last-of-type {
  visibility: initial;
}
.breadcrumbAndSearchBar .breadcrumb > span:last-of-type a {
  color: #404040 !important;
}
.breadcrumbAndSearchBar .sortByAndLayout {
  width: 450px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .breadcrumbAndSearchBar .sortByAndLayout {
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .breadcrumbAndSearchBar .sortByAndLayout {
    display: none;
  }
}
.breadcrumbAndSearchBar .sortByAndLayout .sortBy {
  margin-right: 15px;
}
@media (max-width: 992px) {
  .breadcrumbAndSearchBar .sortByAndLayout .sortBy {
    margin-right: 0;
  }
}
.breadcrumbAndSearchBar .sortByAndLayout .sortBy label {
  margin-right: 10px;
}
.breadcrumbAndSearchBar .sortByAndLayout .sortBy .ddlStyle {
  min-width: 130px;
  border-radius: 3px;
  padding: 5px;
  color: #000;
}
.breadcrumbAndSearchBar .sortByAndLayout .layout {
  display: flex;
  align-items: center;
}
.breadcrumbAndSearchBar .sortByAndLayout .layout .listLayout,
.breadcrumbAndSearchBar .sortByAndLayout .layout .gridLayout {
  cursor: pointer;
  margin: 0 10px;
  display: flex;
  align-items: center;
}
.breadcrumbAndSearchBar .sortByAndLayout .layout .listLayout label,
.breadcrumbAndSearchBar .sortByAndLayout .layout .gridLayout label {
  margin: 0;
}
.breadcrumbAndSearchBar .sortByAndLayout .layout .listLayout img,
.breadcrumbAndSearchBar .sortByAndLayout .layout .gridLayout img {
  margin-left: 5px;
}
.breadcrumbAndSearchBar .sortByAndLayout .layout .gridLayout {
  margin-right: 10px;
}

.productSection {
  visibility: initial;
}
.productSection .productDetails {
  visibility: initial;
}
.productSection .productDetails .productName {
  color: #133c68 !important;
  font-weight: 400 !important;
}
.productSection .productDetails .productNumber {
  color: #7a7a7a !important;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .productSection .productDetails .productNumber {
    font-size: 14px !important;
  }
}
.productSection .productDetails .productDescription {
  border: 0 !important;
  padding-bottom: 0 !important;
  color: #404040 !important;
  font-weight: 400;
  font-size: 18px !important;
  margin-top: 50px;
  margin-bottom: 30px !important;
}
.productSection .productDetails .productDimensions {
  color: #404040 !important;
  font-weight: 400;
  font-size: 18px !important;
}
.productSection .productDetails .productDimensions p {
  margin-bottom: 0 !important;
  color: #404040 !important;
}
.productSection .productDetails .cartOptions {
  margin-top: 30px !important;
}
.productSection .productDetails .cartOptions .quantityContainer {
  margin-right: 15px !important;
  width: 80px !important;
}
.productSection .productDetails .cartOptions .quantityContainer > span {
  font-size: 12px;
}
.productSection .productDetails .cartOptions .quantityContainer .form-control {
  text-align: center;
}
.productSection .productDetails .cartOptions .btnAndPrice {
  text-align: left !important;
}
.productSection .productDetails .cartOptions .btnAndPrice > div {
  visibility: initial;
}
.productSection .productDetails .cartOptions .btnAndPrice > div .btn {
  border-radius: 3px;
}

.productDetailsPage .productDetails.siteWidth .productSection .productImage {
  text-align: center;
  padding-right: 5%;
}
.productDetailsPage .productDetails.siteWidth .productSection .productImage .carousel {
  visibility: initial;
}
.productDetailsPage .productDetails.siteWidth .productSection .productImage .carousel .carousel-inner {
  border: 1px solid #d6d6d6;
}
.productDetailsPage .productDetails.siteWidth .productSection .productImage .carousel .carousel-indicators {
  bottom: -40px;
}
.productDetailsPage .productDetails.siteWidth .productSection .productImage .carousel .carousel-indicators li {
  background: #d1d1d1;
  height: 10px;
  width: 10px;
  /* margin: 0; */
  border: 0;
  border-radius: 25px;
}
.productDetailsPage .productDetails.siteWidth .productSection .productImage .carousel .carousel-indicators li.active {
  background: #ff4e4d;
}
.productDetailsPage .productDetails.siteWidth .productSection .productImage .carousel .carousel-item {
  text-align: center;
  height: 400px;
  line-height: 400px;
}
.productDetailsPage .productDetails.siteWidth .productSection .productImage .carousel .carousel-item img {
  max-height: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .productDetailsPage .productDetails.mainSection {
    display: flex;
    flex-direction: column;
  }
  .productDetailsPage .productDetails.mainSection .productName {
    order: 1;
  }
  .productDetailsPage .productDetails.mainSection .productNumber {
    order: 2;
  }
  .productDetailsPage .productDetails.mainSection div.price {
    order: 3;
    margin-top: 15px !important;
  }
  .productDetailsPage .productDetails.mainSection .cartOptions {
    order: 4;
    flex-direction: initial !important;
    justify-content: start;
    padding-bottom: 30px;
    margin-top: 30px !important;
    border-bottom: 1px solid #d7d7d7;
    border-top: none;
  }
  .productDetailsPage .productDetails.mainSection .cartOptions .quantityContainer {
    position: relative;
  }
  .productDetailsPage .productDetails.mainSection .cartOptions .quantityContainer > span {
    position: absolute;
    top: -20px;
  }
  .productDetailsPage .productDetails.mainSection .productDescription {
    order: 5;
  }
  .productDetailsPage .productDetails.mainSection .productDimensions {
    order: 6;
  }
}
.productDetailsPage .productDetails.mainSection .productSection .productImage {
  text-align: center;
}
.productDetailsPage .productDetails.mainSection .price {
  font-weight: bold;
  font-size: 24px;
  color: #153b68;
  margin-bottom: 15px;
}
.productDetailsPage .productDetails.mainSection .price p {
  margin-bottom: 0;
}
.productDetailsPage .productDetails.mainSection .price .priceValue {
  color: #cc040b;
  font-size: 18px;
  font-weight: bold;
  margin-left: 5px;
}
.productDetailsPage .productDetails.mainSection .downloadallLink {
  text-align: right;
  font-size: 13px;
}
.productDetailsPage .productDetails.mainSection .downloadallLink * {
  color: #cc040b;
}
.productDetailsPage .productDetails.mainSection .downloadallLink img {
  margin-left: 5px;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions {
  width: 100%;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .selectedOption {
  display: flex;
  color: #153b68;
  margin-bottom: 3px;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .selectedOption .label {
  margin-right: 5px;
  font-weight: bold;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .selectedOption .text {
  visibility: initial;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions {
  width: 100%;
  overflow: hidden;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions tbody {
  display: flex;
  flex-wrap: wrap;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions tbody tr {
  margin-right: 5px;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions tbody tr td {
  visibility: initial;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions tbody tr td input {
  display: none;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions tbody tr td input:checked ~ label {
  border-color: #ff4e4d;
  box-shadow: 0px 0px 4px -2px #ff4e4d;
  font-weight: bold;
  color: #153b68;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions tbody tr td label {
  border: 1px solid #d1d1d1;
  box-shadow: 0px 0px 4px -2px #d1d1d1;
  padding: 0px 5px;
  font-size: 13px;
  cursor: pointer;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions.withLabel tr {
  margin-right: 10px;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions.withLabel input:checked ~ label {
  border-color: initial;
  box-shadow: initial;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions.withLabel input:checked ~ label .image {
  border-color: #ff4e4d;
  box-shadow: 0px 0px 4px -2px #ff4e4d;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions.withLabel input:checked ~ label .text {
  color: #153b68;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions.withLabel label {
  border: initial;
  box-shadow: initial;
  padding: initial;
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 65px;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions.withLabel label .image {
  border: 1px solid #d1d1d1;
  box-shadow: 0px 0px 4px -2px #d1d1d1;
  padding: 3px;
}
.productDetailsPage .productDetails.mainSection .typeAndOptions .typeOptions.withLabel label .text {
  font-size: 14px;
  color: #b2b2b2;
  margin-top: 4px;
}
.productDetailsPage .productDetails.mainSection .getQuote {
  visibility: initial;
}
.productDetailsPage .productDetails.mainSection .getQuote p {
  color: #b2b2b2;
  font-size: 16px;
}
.productDetailsPage .productDetails.mainSection .getQuote .btn {
  font-size: 14px;
  border-radius: 3px;
}
.productDetailsPage .productDetails.mainSection .productDimensions {
  margin-top: 0 !important;
}
.productDetailsPage .productDetails.mainSection .productDimensions .ProductDetailPrice {
  margin-top: 15px;
}
.productDetailsPage .productDetails.mainSection .productDimensions .ProductDetailPrice img {
  width: 40px;
}

.line {
  margin: 10px 0;
  background: #d6d6d6;
  width: 100%;
  height: 1px;
}

.pageHeadingSection {
  margin: 35px auto;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .pageHeadingSection {
    margin: 25px auto;
    margin-top: 30px;
  }
}
.pageHeadingSection h1 {
  --fontSize: 48px;
  text-align: center;
  font-weight: 900;
  font-size: var(--fontSize);
  padding-bottom: 15px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #133c68;
}
@media (max-width: 992px) {
  .pageHeadingSection h1 {
    --fontSize: 30px;
  }
}
.pageHeadingSection h1 sub {
  text-transform: lowercase;
  bottom: initial;
  font-size: inherit;
  vertical-align: initial;
  color: #133c68;
}
.pageHeadingSection h1 p {
  text-align: left;
}
.pageHeadingSection p {
  text-align: center;
  text-transform: uppercase;
}
.pageHeadingSection p.noUpperCase {
  text-transform: initial;
}
.pageHeadingSection p.maxWidth {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .pageHeadingSection {
    margin-bottom: 0;
  }
  .pageHeadingSection h1 {
    margin-bottom: 0;
  }
}

.franchisePageContainer {
  --maxWidht: 1400px;
}
.franchisePageContainer .pageHeadingSection,
.franchisePageContainer .productListBanner,
.franchisePageContainer .franchisePage,
.franchisePageContainer .accountForm {
  max-width: var(--maxWidht);
}
.franchisePageContainer * {
  color: #404040;
}
.franchisePageContainer .order-md-1 img {
  max-height: 280px;
}
.franchisePageContainer .orangeList li {
  margin-bottom: 3px;
}
.franchisePageContainer .pageHeadingSection p {
  color: #ed2127;
  font-size: 22px;
  font-weight: 400;
  text-transform: initial;
  text-align: left;
}
@media (max-width: 992px) {
  .franchisePageContainer .pageHeadingSection p {
    font-size: 16px;
  }
}
.franchisePageContainer .franchisePage {
  padding: 50px 0;
}
.franchisePageContainer .franchisePage ul {
  list-style-position: inside;
  padding: 0;
}
.franchisePageContainer .franchisePage ul li span {
  padding-left: 10px;
}
.franchisePageContainer .franchisePage ul li::marker {
  content: "\f105";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin: 0 10px;
  color: #ed2127;
  font-weight: bold;
}
.franchisePageContainer .franchisePage .btnContainer {
  padding-top: 15px;
}
.franchisePageContainer .franchisePage .btnContainer .btn {
  border-radius: 3px;
  padding: 5px 15px;
}
.franchisePageContainer p,
.franchisePageContainer ul li {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .franchisePageContainer p,
  .franchisePageContainer ul li {
    font-size: 16px;
  }
}

.deliverySection {
  border-top: 1px solid #dbdbdb;
}

.cataloguesPage .calaloguesList {
  display: flex;
  --count: 4;
  justify-content: space-between;
  position: relative;
  max-width: 1400px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cataloguesPage .calaloguesList {
    justify-content: flex-start;
    margin-right: -15px;
    --count: 3;
  }
}
@media (max-width: 767px) {
  .cataloguesPage .calaloguesList {
    justify-content: start;
    margin: 0 auto;
    --count: 2;
    margin-bottom: 25px;
  }
}
.cataloguesPage .calaloguesList .item {
  width: 300px;
  padding-bottom: 40px;
}
@media (max-width: 1440px) {
  .cataloguesPage .calaloguesList .item {
    width: 280px;
  }
}
@media (max-width: 1400px) {
  .cataloguesPage .calaloguesList .item {
    width: 250px;
  }
}
@media (max-width: 992px) {
  .cataloguesPage .calaloguesList .item {
    margin-right: 15px;
    width: calc(100% / var(--count));
  }
}
@media (max-width: 767px) {
  .cataloguesPage .calaloguesList .item {
    width: calc(100% / var(--count));
    margin: 0;
    padding-bottom: 10px;
  }
}
.cataloguesPage .calaloguesList .item:nth-of-type(5n)::before {
  content: "";
  border-top: 1px solid #dedede;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .cataloguesPage .calaloguesList .item:nth-of-type(5n)::before {
    border-top: 0;
  }
}
.cataloguesPage .calaloguesList .item .imageContainer {
  height: 370px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cataloguesPage .calaloguesList .item .imageContainer {
    height: 300px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .cataloguesPage .calaloguesList .item .imageContainer {
    height: 250px;
    margin-top: 20px;
  }
}
.cataloguesPage .calaloguesList .item .imageContainer img {
  max-height: 100%;
  max-width: 100%;
}
.cataloguesPage .calaloguesList .item .linkContainer {
  margin-top: 20px;
}
.cataloguesPage .calaloguesList .item .linkContainer a {
  color: #032a6b;
  text-decoration: none;
}
@media (max-width: 992px) {
  .cataloguesPage .calaloguesList .item .linkContainer a {
    width: 100%;
  }
}
.cataloguesPage .calaloguesList .item .linkContainer a:hover {
  color: #ee2128;
}
.cataloguesPage .calaloguesList .item .linkContainer a br {
  visibility: initial;
}
.cataloguesPage .calaloguesList .item .linkContainer a .fa {
  color: #ee2128;
  font-size: 20px;
  font-weight: 700;
}

.givingBackPage .giveBackSection p {
  color: #404040 !important;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .givingBackPage .giveBackSection p {
    font-size: 16px;
  }
}

.procurementPage {
  --maxWidht: 1400px;
}
.procurementPage p {
  color: #404040;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .procurementPage p {
    font-size: 16px;
  }
}
.procurementPage .pageHeadingSection,
.procurementPage .topParagraphs,
.procurementPage .accountForm {
  max-width: var(--maxWidht);
}
.procurementPage .topParagraphs {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .procurementPage .topParagraphs {
    font-size: 16px;
  }
}
.procurementPage .topParagraphs .labeslSection {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 100px 0;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .procurementPage .topParagraphs .labeslSection {
    margin: 50px 0;
  }
}
.procurementPage .topParagraphs .labeslSection .label {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .procurementPage .topParagraphs .labeslSection .label {
    width: 100%;
    margin-bottom: 15px;
  }
}
.procurementPage .topParagraphs .labeslSection .label img {
  width: 50px;
  margin-right: 7px;
}
.procurementPage .topParagraphs .labeslSection .label .text {
  --fontsize: 20px;
  font-size: var(--fontSize);
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0px;
}
.procurementPage .supplyChainSection,
.procurementPage .ourRootsSection,
.procurementPage .ourMissionSection,
.procurementPage .ourValue,
.procurementPage .ourPerks {
  padding: 30px calc((100% - var(--maxWidht)) / 2);
  background: #f9f9f9;
}
@media (max-width: 1400px) {
  .procurementPage .supplyChainSection,
  .procurementPage .ourRootsSection,
  .procurementPage .ourMissionSection,
  .procurementPage .ourValue,
  .procurementPage .ourPerks {
    padding-left: 15px;
    padding-left: 15px;
  }
}
.procurementPage .supplyChainSection h1,
.procurementPage .ourRootsSection h1,
.procurementPage .ourMissionSection h1,
.procurementPage .ourValue h1,
.procurementPage .ourPerks h1 {
  text-align: center;
  font-weight: 900;
  font-size: 45px;
  padding-bottom: 15px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #133c68;
}
.procurementPage .supplyChainSection .textImg,
.procurementPage .ourRootsSection .textImg,
.procurementPage .ourMissionSection .textImg,
.procurementPage .ourValue .textImg,
.procurementPage .ourPerks .textImg {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .procurementPage .supplyChainSection .textImg,
  .procurementPage .ourRootsSection .textImg,
  .procurementPage .ourMissionSection .textImg,
  .procurementPage .ourValue .textImg,
  .procurementPage .ourPerks .textImg {
    flex-direction: column;
  }
}
.procurementPage .supplyChainSection .textImg .text,
.procurementPage .ourRootsSection .textImg .text,
.procurementPage .ourMissionSection .textImg .text,
.procurementPage .ourValue .textImg .text,
.procurementPage .ourPerks .textImg .text {
  width: calc(100% - 350px);
  padding-right: 50px;
}
@media (max-width: 767px) {
  .procurementPage .supplyChainSection .textImg .text,
  .procurementPage .ourRootsSection .textImg .text,
  .procurementPage .ourMissionSection .textImg .text,
  .procurementPage .ourValue .textImg .text,
  .procurementPage .ourPerks .textImg .text {
    width: 100%;
    padding-right: 0;
  }
}
.procurementPage .supplyChainSection .textImg .text p,
.procurementPage .ourRootsSection .textImg .text p,
.procurementPage .ourMissionSection .textImg .text p,
.procurementPage .ourValue .textImg .text p,
.procurementPage .ourPerks .textImg .text p {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .procurementPage .supplyChainSection .textImg .text p,
  .procurementPage .ourRootsSection .textImg .text p,
  .procurementPage .ourMissionSection .textImg .text p,
  .procurementPage .ourValue .textImg .text p,
  .procurementPage .ourPerks .textImg .text p {
    font-size: 16px;
  }
}
.procurementPage .supplyChainSection .textImg .image,
.procurementPage .ourRootsSection .textImg .image,
.procurementPage .ourMissionSection .textImg .image,
.procurementPage .ourValue .textImg .image,
.procurementPage .ourPerks .textImg .image {
  width: 350px;
  text-align: right;
}
@media (max-width: 767px) {
  .procurementPage .supplyChainSection .textImg .image,
  .procurementPage .ourRootsSection .textImg .image,
  .procurementPage .ourMissionSection .textImg .image,
  .procurementPage .ourValue .textImg .image,
  .procurementPage .ourPerks .textImg .image {
    width: 100%;
    text-align: center;
  }
}
.procurementPage .supplyChainSection .textImg .image img,
.procurementPage .ourRootsSection .textImg .image img,
.procurementPage .ourMissionSection .textImg .image img,
.procurementPage .ourValue .textImg .image img,
.procurementPage .ourPerks .textImg .image img {
  max-width: 100%;
}
.procurementPage .ourMissionSection,
.procurementPage .ourValue,
.procurementPage .ourPerks {
  background: none;
}
.procurementPage .ourMissionSection .labeslSection,
.procurementPage .ourValue .labeslSection,
.procurementPage .ourPerks .labeslSection {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 50px 0;
  flex-wrap: wrap;
}
.procurementPage .ourMissionSection .labeslSection .label,
.procurementPage .ourValue .labeslSection .label,
.procurementPage .ourPerks .labeslSection .label {
  display: flex;
  align-items: start;
  width: 45%;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .procurementPage .ourMissionSection .labeslSection .label,
  .procurementPage .ourValue .labeslSection .label,
  .procurementPage .ourPerks .labeslSection .label {
    width: 100%;
    margin-bottom: 15px;
  }
}
.procurementPage .ourMissionSection .labeslSection .label img,
.procurementPage .ourValue .labeslSection .label img,
.procurementPage .ourPerks .labeslSection .label img {
  width: 50px;
  margin-right: 7px;
}
.procurementPage .ourMissionSection .labeslSection .label .text,
.procurementPage .ourValue .labeslSection .label .text,
.procurementPage .ourPerks .labeslSection .label .text {
  --fontsize: 18px;
  font-size: var(--fontSize);
}
.procurementPage .ourMissionSection .labeslSection .label .text strong,
.procurementPage .ourValue .labeslSection .label .text strong,
.procurementPage .ourPerks .labeslSection .label .text strong {
  color: #163f6d;
  font-weight: 900;
  text-transform: uppercase;
  vertical-align: top;
  line-height: 12px;
}
.procurementPage .ourMissionSection .labeslSection .label .text p,
.procurementPage .ourValue .labeslSection .label .text p,
.procurementPage .ourPerks .labeslSection .label .text p {
  font-weight: 400;
}
.procurementPage .ourValue {
  background: #f9f9f9;
}
.procurementPage .ourPerks {
  background: url(/Assets/Images/bg.jpg);
}
.procurementPage .ourPerks h1 {
  font-weight: 400;
  color: #fff;
}
.procurementPage .ourPerks .labeslSection {
  visibility: initial;
}
.procurementPage .ourPerks .labeslSection .label {
  margin-bottom: 25px;
  align-items: center;
}
.procurementPage .ourPerks .labeslSection .label img {
  visibility: initial;
  margin-right: 10px;
  max-width: 50px;
  max-height: 50px;
  width: initial;
}
.procurementPage .ourPerks .labeslSection .label .text {
  visibility: initial;
}
.procurementPage .ourPerks .labeslSection .label .text p {
  font-weight: 100;
  color: #fff;
  font-size: 30px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .procurementPage .ourPerks .labeslSection .label .text p {
    font-size: 22px;
  }
}
.procurementPage .btnContainer {
  padding-top: 30px;
  width: 100%;
  padding-left: 55%;
}
.procurementPage .btnContainer .btn {
  border-radius: 3px;
  padding: 5px 15px;
  min-width: 110px;
}
.procurementPage .givingBack {
  margin-bottom: 0;
}

.accountForm,
.formStyle {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .accountForm,
  .formStyle {
    flex-direction: column;
  }
}
.accountForm .left,
.formStyle .left {
  width: 45%;
}
@media (max-width: 767px) {
  .accountForm .left,
  .formStyle .left {
    width: 100%;
  }
}
.accountForm .right,
.formStyle .right {
  width: 45%;
}
@media (max-width: 767px) {
  .accountForm .right,
  .formStyle .right {
    width: 100%;
  }
}
.accountForm .ValidationError[style="display: inline;"],
.formStyle .ValidationError[style="display: inline;"] {
  position: absolute;
  font-size: 10px;
  right: 0;
  bottom: 0;
  width: 100%;
  text-align: right;
}
.accountForm .ValidationError[style="display: inline;"]:after,
.formStyle .ValidationError[style="display: inline;"]:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: red;
  left: 0;
  bottom: 0px;
  z-index: 1;
}
.accountForm .textField,
.formStyle .textField {
  position: relative;
  padding-top: 30px;
  width: 100%;
}
.accountForm .textField .form-control,
.formStyle .textField .form-control {
  position: relative;
  z-index: 1;
  background: none;
  border: 0;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
}
.accountForm .textField .form-control.aspNetDisabled,
.formStyle .textField .form-control.aspNetDisabled {
  background-color: #e9ecef !important;
}
.accountForm .textField .form-control ~ label,
.formStyle .textField .form-control ~ label {
  top: 13px;
  opacity: 1 !important;
  font-size: 13px;
  bottom: initial;
}
.accountForm .textField .form-control::placeholder,
.formStyle .textField .form-control::placeholder {
  color: #fff;
  opacity: 0;
}
.accountForm .textField .form-control:hover ~ label,
.formStyle .textField .form-control:hover ~ label {
  opacity: 0.5;
}
.accountForm .textField textarea,
.formStyle .textField textarea {
  min-height: 129px;
}
.accountForm .textField label,
.formStyle .textField label {
  bottom: 0;
  transition: 0.2s linear all;
  position: absolute;
  left: 10px;
}
.accountForm .fileField,
.formStyle .fileField {
  position: relative;
  padding-top: 30px;
  width: 100%;
}
.accountForm .fileField .fileUpload,
.formStyle .fileField .fileUpload {
  width: 100%;
  vertical-align: middle;
  color: transparent;
  line-height: 48px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
  padding-right: 0;
}
.accountForm .fileField .fileUpload::-webkit-file-upload-button,
.formStyle .fileField .fileUpload::-webkit-file-upload-button {
  background: url(../../Images/browreBtn.png);
  color: transparent;
  font-size: 0;
  border: none;
  float: right;
  width: 127px;
  height: 48px;
  cursor: pointer;
}
.accountForm .fileField label,
.formStyle .fileField label {
  bottom: 0;
  transition: 0.2s linear all;
  position: absolute;
  left: 10px;
}
.accountForm .fileField label.hasVal,
.formStyle .fileField label.hasVal {
  top: 13px;
  opacity: 1 !important;
  font-size: 13px;
  bottom: initial;
}
.accountForm .ddlField,
.formStyle .ddlField {
  position: relative;
  padding-top: 30px;
}
.accountForm .ddlField select,
.formStyle .ddlField select {
  background: none;
  border: 0;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
}
.accountForm .paraField,
.formStyle .paraField {
  padding-top: 30px;
  width: 100%;
}
.accountForm .checkBoxField,
.formStyle .checkBoxField {
  display: flex;
  padding-top: 30px;
  width: 100%;
}
.accountForm .checkBoxField input,
.formStyle .checkBoxField input {
  height: 20px;
  width: 20px;
}
.accountForm .checkBoxField label,
.formStyle .checkBoxField label {
  width: calc(100% - 20px);
  padding-left: 15px;
}
.accountForm .btnContainer,
.formStyle .btnContainer {
  padding-top: 30px;
  width: 100%;
}
.accountForm .btnContainer .btn,
.formStyle .btnContainer .btn {
  border-radius: 3px;
  padding: 5px 15px;
}
@media (max-width: 767px) {
  .accountForm .btnContainer,
  .formStyle .btnContainer {
    padding-left: initial;
    text-align: right;
  }
}
.accountForm .btnContainer .errorMessage .Message,
.formStyle .btnContainer .errorMessage .Message {
  color: #c10000;
  margin-top: 10px;
  display: block;
}

.vendorsPage {
  --maxWidht: 1400px;
}
.vendorsPage .pageHeadingSection,
.vendorsPage .topParagraphs,
.vendorsPage .accountForm,
.vendorsPage .vendorList,
.vendorsPage .whoWeAreSection {
  max-width: var(--maxWidht);
}
.vendorsPage .topParagraphs p {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .vendorsPage .topParagraphs p {
    font-size: 16px;
  }
}
.vendorsPage .whoWeAreSection {
  margin-bottom: 50px;
  margin-top: 30px;
}
.vendorsPage .whoWeAreSection ul {
  list-style: none;
  padding: 0;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .vendorsPage .whoWeAreSection ul {
    width: 96%;
  }
}
.vendorsPage .whoWeAreSection ul li {
  width: 50%;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .vendorsPage .whoWeAreSection ul li {
    width: 100%;
  }
}
.vendorsPage .whoWeAreSection ul li span {
  visibility: initial;
}
.vendorsPage .whoWeAreSection ul li span.img {
  display: block;
  margin-right: 10px;
  width: 40px;
}
.vendorsPage .whoWeAreSection ul li span.img img {
  max-width: 100%;
}
.vendorsPage .whoWeAreSection ul li span.txt {
  color: #163f6d;
  font-size: 20px;
}
@media (max-width: 767px) {
  .vendorsPage .whoWeAreSection ul li span.txt {
    font-size: 18px;
  }
}
.vendorsPage .vendorList {
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 70px 70px;
}
@media (max-width: 767px) {
  .vendorsPage .vendorList {
    grid-template-columns: 1fr 1fr;
    gap: 70px 70px;
  }
}
.vendorsPage .vendorList .vendor {
  width: initial;
}
.vendorsPage .vendorList .vendor img {
  max-width: 100%;
}
.vendorsPage .vendorSection {
  background: #f9f9f9;
  padding-top: 25px;
  padding-bottom: 50px;
}

.newsDetailsPage .pageHeadingSection h1 {
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}
.newsDetailsPage .shareAndNavigate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 1024px) {
  .newsDetailsPage .shareAndNavigate {
    flex-direction: column;
  }
}
.newsDetailsPage .shareAndNavigate .shareLinks {
  text-align: center;
  position: absolute;
}
@media (max-width: 1024px) {
  .newsDetailsPage .shareAndNavigate .shareLinks {
    position: initial;
    margin-bottom: 15px;
  }
}
.newsDetailsPage .shareAndNavigate .shareLinks label {
  color: #163f6e;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.newsDetailsPage .shareAndNavigate .shareLinks .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newsDetailsPage .shareAndNavigate .shareLinks .links a {
  visibility: initial;
}
.newsDetailsPage .shareAndNavigate .shareLinks .links a img {
  visibility: initial;
}
.newsDetailsPage .shareAndNavigate .navigate {
  width: 100%;
  text-align: center;
}
.newsDetailsPage .shareAndNavigate .navigate .btn {
  border-radius: 3px;
  padding: 5px 15px;
  margin: 5px;
}

.loginPage {
  visibility: initial;
  --maxWidth: 1200px;
}
.loginPage .pageHeadingSection {
  visibility: initial;
  max-width: var(--maxWidth);
}
.loginPage .pageHeadingSection h1 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.loginPage .pageHeadingSection p {
  font-size: 24px;
  font-weight: 700;
  color: #133c68;
}
.loginPage .loginPage_lefRight {
  max-width: var(--maxWidth);
}
.loginPage .loginPage_lefRight .loginPage_left h2,
.loginPage .loginPage_lefRight .loginPage_right h2 {
  font-size: 22px;
  font-weight: 400;
}
.loginPage .loginPage_lefRight .loginPage_left .formStyle,
.loginPage .loginPage_lefRight .loginPage_right .formStyle {
  padding-top: 0;
}
.loginPage .loginPage_lefRight .loginPage_left p,
.loginPage .loginPage_lefRight .loginPage_right p {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .loginPage .loginPage_lefRight .loginPage_left p,
  .loginPage .loginPage_lefRight .loginPage_right p {
    font-size: 16px;
  }
}
.loginPage .loginPage_lefRight .loginPage_left {
  width: 45%;
}
@media (max-width: 1200px) {
  .loginPage .loginPage_lefRight .loginPage_left {
    width: 100%;
  }
}
.loginPage .loginPage_lefRight .loginPage_right {
  width: 45%;
}
@media (max-width: 1200px) {
  .loginPage .loginPage_lefRight .loginPage_right {
    width: 100%;
  }
}

.contactUsPage .pageHeadingSection p {
  text-align: left;
  color: #ed2127;
}

.divider {
  position: relative;
  padding: 30px 0;
}
.divider:before {
  content: "";
  background: #dbdbdb;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
}

.checkoutPage,
.addressPage,
.reviewAndPayPage {
  --maxWidht: 1400px;
}
.checkoutPage .checkoutContainer,
.addressPage .checkoutContainer,
.reviewAndPayPage .checkoutContainer {
  max-width: var(--maxWidht);
}
.checkoutPage .checkoutContainer > .similar_div,
.addressPage .checkoutContainer > .similar_div,
.reviewAndPayPage .checkoutContainer > .similar_div {
  visibility: initial;
}
.checkoutPage .checkoutContainer > .similar_div .checkoutTabs,
.addressPage .checkoutContainer > .similar_div .checkoutTabs,
.reviewAndPayPage .checkoutContainer > .similar_div .checkoutTabs {
  width: 100%;
  padding: 0;
  background: #f0f0f0;
}
.checkoutPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem,
.addressPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem,
.reviewAndPayPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem {
  margin: 0;
  padding: 0;
}
.checkoutPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem:not(:last-of-type),
.addressPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem:not(:last-of-type),
.reviewAndPayPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem:not(:last-of-type) {
  border-right: 2px solid rgba(204, 204, 204, 0.3294117647);
}
.checkoutPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem a,
.addressPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem a,
.reviewAndPayPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem a {
  display: block;
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  color: #133c68;
}
.checkoutPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem a.active,
.addressPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem a.active,
.reviewAndPayPage .checkoutContainer > .similar_div .checkoutTabs .checkout-tabsItem a.active {
  color: #fff;
  background: #133c68;
}
.checkoutPage .checkoutContainer .cartContainer,
.addressPage .checkoutContainer .cartContainer,
.reviewAndPayPage .checkoutContainer .cartContainer {
  visibility: initial;
  --cellWidth: 150px;
}
.checkoutPage .checkoutContainer .cartContainer .cartTable,
.addressPage .checkoutContainer .cartContainer .cartTable,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable {
  margin-top: 25px;
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableHead,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableHead,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableHead {
  font-weight: 800;
  color: #133c68;
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableBody,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableBody,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableBody {
  border-bottom: 0;
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow {
  align-items: start;
}
@media (max-width: 1024px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow {
    border-bottom: 1px solid rgb(211, 211, 211);
    position: relative;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .label,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .label,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .label {
  display: none;
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn {
    display: flex;
    align-items: center;
    margin: 0;
    margin-bottom: 10px;
  }
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .label,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .label,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .label {
    display: initial;
    width: 120px;
    text-align: left;
  }
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .text,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .text,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_tableColumn .text {
    width: calc(100% - 120px);
    margin: 0;
    text-align: left;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_image,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_image,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_image {
  width: var(--cellWidth);
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_image,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_image,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_image {
    width: 100%;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary {
  width: calc(100% - 5 * var(--cellWidth));
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary {
    width: 100%;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary .pName,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary .pName,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary .pName {
  margin-bottom: 0;
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary .skuNumber,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary .skuNumber,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_ShoppingCartSummary .skuNumber {
  color: #7a7a7a;
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity {
  width: var(--cellWidth);
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity {
    width: 100%;
  }
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity .form-control,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity .form-control,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Quantity .form-control {
    width: 80px;
    margin: initial;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Price,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Price,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Price {
  width: var(--cellWidth);
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Price,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Price,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Price {
    width: 100%;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Total,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Total,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Total {
  width: var(--cellWidth);
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Total,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Total,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Total {
    width: 100%;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete {
  width: var(--cellWidth);
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete .text,
  .addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete .text,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete .text {
    text-align: right;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete .fa,
.addressPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete .fa,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .cs_tableRow .cs_Delete .fa {
  color: #ee2128;
}
.checkoutPage .checkoutContainer .cartContainer .cartTable .ValidationError,
.addressPage .checkoutContainer .cartContainer .cartTable .ValidationError,
.reviewAndPayPage .checkoutContainer .cartContainer .cartTable .ValidationError {
  font-size: 10px;
}
.checkoutPage .checkoutContainer .cartContainer .cartBottomSection,
.addressPage .checkoutContainer .cartContainer .cartBottomSection,
.reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection {
  border-bottom: 1px solid rgb(211, 211, 211);
  padding-bottom: 25px;
}
.checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow,
.addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow,
.reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow {
  visibility: initial;
}
@media (max-width: 1024px) {
  .checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow,
  .addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow {
    width: 100%;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput,
.addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput,
.reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput {
  width: calc(2 * var(--cellWidth));
}
.checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput .form-control,
.addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput .form-control,
.reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput .form-control {
  border-radius: 3px;
  padding: 2px 15px;
  height: initial;
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput,
  .addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoInput {
    width: 50%;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton,
.addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton,
.reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton {
  width: calc(100% - 5 * var(--cellWidth));
}
.checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton .btn,
.addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton .btn,
.reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton .btn {
  border-radius: 3px;
  padding: 5px 15px;
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton,
  .addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoButton {
    width: 50%;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotalLabel,
.addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotalLabel,
.reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotalLabel {
  width: var(--cellWidth);
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotalLabel,
  .addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotalLabel,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotalLabel {
    width: 120px;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotal,
.addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotal,
.reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotal {
  visibility: initial;
  width: var(--cellWidth);
  margin-right: var(--cellWidth);
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotal,
  .addressPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotal,
  .reviewAndPayPage .checkoutContainer .cartContainer .cartBottomSection .cs_tableRow .cs_promoSubTotal {
    width: calc(100% - 120px);
    margin: 0;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable,
.addressPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable,
.reviewAndPayPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable {
  margin: 50px 0;
  width: 100%;
}
.checkoutPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable .btn,
.addressPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable .btn,
.reviewAndPayPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable .btn {
  border-radius: 3px;
  padding: 5px 15px;
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .checkoutPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable .btn,
  .addressPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable .btn,
  .reviewAndPayPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable .btn {
    width: calc(50% - 10px);
    margin: 5px !important;
  }
}
.checkoutPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable tbody tr td,
.addressPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable tbody tr td,
.reviewAndPayPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable tbody tr td {
  justify-content: end;
}
.checkoutPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable tbody tr td .btn,
.addressPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable tbody tr td .btn,
.reviewAndPayPage .checkoutContainer .cartContainer .cs_checkoutButtonsTable tbody tr td .btn {
  border-radius: 3px;
  padding: 5px 15px;
  margin-left: 10px;
}

.reviewAndPayPage .orderTotalMessage {
  max-width: var(--maxWidht);
  text-align: center;
  margin-top: 25px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.reviewAndPayPage .payAddressPList {
  max-width: var(--maxWidht);
}
.reviewAndPayPage .continueOrPay {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .reviewAndPayPage .continueOrPay {
    flex-direction: column;
  }
}
.reviewAndPayPage .continueOrPay .paymentBtnContainer {
  margin: 25px 0;
  width: 240px;
}
@media (max-width: 767px) {
  .reviewAndPayPage .continueOrPay .paymentBtnContainer {
    margin: 15px 0;
  }
}
.reviewAndPayPage .continueOrPay .paymentBtnContainer .btn {
  visibility: initial;
}
.reviewAndPayPage .continueOrPay .orContainer {
  font-weight: bold;
}
.reviewAndPayPage .continueOrPay .continueShoppingContainer {
  margin: 25px 0;
  width: 240px;
}
@media (max-width: 767px) {
  .reviewAndPayPage .continueOrPay .continueShoppingContainer {
    margin: 15px 0;
  }
}
.reviewAndPayPage .continueOrPay .continueShoppingContainer .btn {
  visibility: initial;
}

.addressPage {
  visibility: initial;
}
.addressPage .btn {
  border-radius: 3px;
  padding: 5px 15px;
}
.addressPage .addressesContainer {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .addressPage .addressesContainer {
    flex-wrap: wrap;
  }
}
.addressPage .addressesContainer .formStyle {
  width: 45%;
}
@media (max-width: 767px) {
  .addressPage .addressesContainer .formStyle {
    width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.addressPage .shippingMethod {
  width: 100%;
}
.addressPage .shippingMethod .row {
  width: 100%;
  margin: 0;
}
.addressPage .btnSection {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.addressPage .btnSection .btn {
  visibility: initial;
}
.addressPage .btnSection .Message {
  width: 100%;
  margin-top: 10px;
}

#UPShoppingCart .cs_cartButtonsContainer .btn {
  border-radius: 3px;
  padding: 5px 15px;
}

.thankyouMessage {
  max-width: var(--maxWidht);
  margin: 35px auto;
  --fontSize: 48px;
  text-align: center;
  font-weight: 900;
  font-size: var(--fontSize);
  padding-bottom: 15px;
  margin-bottom: 40px;
  color: #ee2128;
  display: block;
}
@media (max-width: 992px) {
  .thankyouMessage {
    --fontSize: 30px;
  }
}

#signUpModal {
  visibility: initial;
}
#signUpModal .modal-content {
  max-width: 100%;
  width: 450px;
}
#signUpModal .modal-body {
  background-image: url(../../Images/popUpBg.jpg);
  background-position: center;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 25px;
}
#signUpModal .closeBtn {
  background: none;
  border: none;
  position: absolute;
  right: 5px;
  top: 5px;
}
#signUpModal #mc_embed_signup_scroll {
  visibility: initial;
}
#signUpModal #mc_embed_signup_scroll .logo {
  visibility: initial;
}
#signUpModal #mc_embed_signup_scroll .logo img {
  visibility: initial;
}
#signUpModal #mc_embed_signup_scroll .text {
  visibility: initial;
}
#signUpModal #mc_embed_signup_scroll .text h1 {
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-top: 25px;
}
#signUpModal #mc_embed_signup_scroll .text p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 40px;
  margin-top: 25px;
  text-transform: uppercase;
}
#signUpModal #mc_embed_signup_scroll .textBoxContainer {
  visibility: initial;
}
#signUpModal #mc_embed_signup_scroll .textBoxContainer .txtBox {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 3px;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
}
#signUpModal #mc_embed_signup_scroll .textBoxContainer .txtBox::placeholder {
  font-size: 18px;
}
#signUpModal #mc_embed_signup_scroll .btnContainer {
  width: 100%;
}
#signUpModal #mc_embed_signup_scroll .btnContainer .NewsletterButton {
  width: 100%;
  border-radius: 3px;
  text-align: center;
}
#signUpModal #mc_embed_signup_scroll .bottomBar {
  margin-top: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
#signUpModal #mc_embed_signup_scroll .bottomBar .cbx {
  display: flex;
  align-items: center;
}
#signUpModal #mc_embed_signup_scroll .bottomBar .cbx input {
  background-color: #fff;
  border-radius: 3px;
  height: 25px;
  width: 25px;
  margin-top: 0 !important;
}
#signUpModal #mc_embed_signup_scroll .bottomBar .cbx label {
  margin-bottom: 0;
}
#signUpModal #mc_embed_signup_scroll .bottomBar button {
  color: #fff;
  position: relative;
}

.ValidationError {
  font-size: 10px;
}

/* ============================================
   NEW DESIGN - HOMEPAGE STYLES (nd- prefix)
   ============================================ */

/* -- Shared Utilities -- */
.nd-text-red {
  color: #ec2426;
  font-weight: 700;
}

.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.nd-btn-red {
  background: #ec2426;
  color: #fefefe;
}

.nd-btn-red:hover {
  background: #d41e20;
  color: #fefefe;
  text-decoration: none;
}

.nd-btn-white {
  background: #ffffff;
  color: #17406f;
  border: 1px solid #e0e0e0;
}

.nd-btn-white:hover {
  background: #f5f5f5;
  color: #17406f;
  text-decoration: none;
}

/* -- Section 1: Hero Banner Slider -- */
.nd-hero-slider {
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.nd-hero-slider .carousel,
.nd-hero-slider .carousel-inner,
.nd-hero-slider .carousel-item {
  height: 100%;
}

/* Each slide: flex row, text left + image right */
.nd-hero-slide {
  display: flex;
  align-items: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

/* Text side */
.nd-hero-text {
  width: 45%;
  padding: 60px 0 60px calc((100vw - var(--siteWidth)) / 2);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.nd-text-upper {
  text-transform: uppercase;
}

.nd-hero-heading {
  font-family: 'Mulish', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #0c2044;
  margin-bottom: 16px;
}

.nd-hero-sub {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #646a6f;
  margin-bottom: 28px;
  line-height: 1.5;
}

.nd-hero-buttons {
  display: flex;
  gap: 12px;
}

/* Image side: right-aligned, bleeds to edge, fades left */
.nd-hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  overflow: hidden;
}

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

/* Gradient fade from white into image */
.nd-hero-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

/* Carousel indicators: bottom left, dark dots */
.nd-hero-indicators {
  justify-content: flex-start !important;
  margin-left: calc((100vw - var(--siteWidth)) / 2) !important;
  margin-bottom: 20px !important;
  z-index: 3;
}

.nd-hero-indicators li {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #ccc !important;
  border: none !important;
  opacity: 1 !important;
  margin: 0 4px !important;
}

.nd-hero-indicators li.active {
  background-color: #1d1d1b !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .nd-hero-text {
    padding-left: calc((100vw - var(--siteWidth)) / 2);
  }
  .nd-hero-heading {
    font-size: 40px;
  }
  .nd-hero-indicators {
    margin-left: calc((100vw - var(--siteWidth)) / 2) !important;
  }
}

@media (max-width: 992px) {
  .nd-hero-slide {
    min-height: 350px;
  }
  .nd-hero-text {
    width: 50%;
    padding-left: calc((100vw - var(--siteWidth)) / 2);
  }
  .nd-hero-heading {
    font-size: 34px;
  }
  .nd-hero-image {
    width: 55%;
  }
  .nd-hero-indicators {
    margin-left: calc((100vw - var(--siteWidth)) / 2) !important;
  }
}

@media (max-width: 768px) {
  .nd-hero-slide {
    flex-direction: column;
    min-height: auto;
  }
  .nd-hero-text {
    width: 100%;
    padding: 40px 24px 24px;
  }
  .nd-hero-image {
    position: relative;
    width: 100%;
    height: 250px;
  }
  .nd-hero-image::before {
    display: none;
  }
  .nd-hero-heading {
    font-size: 30px;
  }
  .nd-hero-indicators {
    margin-left: calc((100vw - var(--siteWidth)) / 2) !important;
  }
}

@media (max-width: 480px) {
  .nd-hero-heading {
    font-size: 24px;
  }
  .nd-hero-buttons {
    flex-direction: column;
  }
}

/* -- Section 2: Trust Bar -- */
.nd-trust-bar {
  background: #f3f5f7;
  padding: 40px calc((100vw - var(--siteWidth)) / 2);
}

.nd-trust-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--siteWidth);
  margin: 0 auto;
}

.nd-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.nd-trust-item:hover {
  opacity: 0.8;
  text-decoration: none;
  color: inherit;
}

.nd-trust-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nd-trust-icon .material-symbols-outlined {
  font-size: 40px;
  color: #ec2426;
}

.nd-trust-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nd-trust-label {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1b;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .nd-trust-bar {
    padding: 32px 40px;
  }
  .nd-trust-bar-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nd-trust-bar {
    padding: 28px 24px;
  }
  .nd-trust-bar-inner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nd-trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* -- Section 3: Shop by Category -- */
.nd-section-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.nd-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: #1d1d1b;
  margin-bottom: 8px;
}

.nd-section-subtitle {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #646a6f;
  line-height: 1.6;
  max-width: 420px;
  max-width: 600px;
}

.nd-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}

.nd-btn-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 69px;
  background: #ffffff;
  color: #ec2426;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #eaeaea;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nd-btn-pill:hover {
  background: #fef2f2;
  color: #ec2426;
  text-decoration: none;
}

.nd-categories {
  padding: 80px calc((100vw - var(--siteWidth)) / 2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.nd-categories::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 360px;
  height: 420px;
  background-image: url('/Assets/Images/Leaf Vector.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.nd-categories > * { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .nd-categories::before {
    width: 220px;
    height: 280px;
    top: 0;
    right: -30px;
  }
}

.nd-categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.nd-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.nd-category-item:hover {
  transform: translateY(-4px);
  text-decoration: none;
  color: inherit;
}

.nd-category-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nd-category-item:hover .nd-category-circle {
  border-color: #ec2426;
  box-shadow: 0 2px 12px rgba(236, 36, 38, 0.1);
}

.nd-category-circle img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.nd-category-name {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1b;
}

@media (max-width: 1200px) {
  .nd-section-container {
    padding: 0;
  }
  .nd-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nd-section-container {
    padding: 0;
  }
  .nd-categories {
    padding: 48px 24px;
  }
  .nd-section-title {
    font-size: 32px;
  }
  .nd-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .nd-category-circle {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .nd-section-title {
    font-size: 26px;
  }
  .nd-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nd-category-circle {
    width: 80px;
    height: 80px;
  }
}

/* -- Section 4: Featured Products -- */
.nd-featured-products {
  padding: 80px calc((100vw - var(--siteWidth)) / 2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.nd-featured-products::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 360px;
  height: 380px;
  background-image: url('/Assets/Images/leaf 2 Vector.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.nd-featured-products > * { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .nd-featured-products::before {
    width: 220px;
    height: 240px;
    top: -20px;
    right: -40px;
  }
}

.nd-fp-header {
  margin-bottom: 32px;
}

.nd-fp-title {
  font-family: 'Mulish', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #434031;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.nd-fp-title strong {
  font-weight: 800;
  color: #ec2426;
}

.nd-fp-subtitle {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #646a6f;
  line-height: 1.5;
  max-width: 470px;
}

.nd-products-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.nd-products-grid::-webkit-scrollbar {
  display: none;
}

.nd-products-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.nd-products-grid.is-dragging a,
.nd-products-grid.is-dragging button {
  pointer-events: none;
}

.nd-product-card {
  background: #ffffff;
  border: 1px solid #EEF1F3;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  min-width: 230px;
  max-width: 230px;
  flex-shrink: 0;
}

.nd-product-card:hover {
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.nd-product-image {
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: #ffffff;
  position: relative;
}

.nd-product-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nd-product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.nd-product-bookmark {
  position: absolute;
  top: 4px;
  right: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.1;
  transition: opacity 0.2s ease;
}

.nd-product-bookmark .material-symbols-outlined {
  font-size: 24px;
  color: #1c1b1f;
}

.nd-product-card:hover .nd-product-bookmark {
  opacity: 0.3;
}

.nd-product-bookmark:hover {
  opacity: 1 !important;
}

.nd-product-info {
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nd-product-category {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #EE2128;
  display: block;
  min-height: 16px;
  line-height: 16px;
  text-transform: uppercase;
}

.nd-product-name {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1b;
  letter-spacing: -0.28px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(14px * 1.3 * 2);
}

.nd-product-price-row {
  margin-top: auto;
}

.nd-product-name a {
  color: #1d1d1b;
  text-decoration: none;
}

.nd-product-name a:hover {
  color: #ec2426;
}

.nd-product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nd-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nd-price-msrp {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.28px;
  color: #1d1d1b;
}

.nd-out-of-stock {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #EE2128;
}

.nd-price-current {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.28px;
  color: #1d1d1b;
}

.nd-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fbfbfb;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 2px;
}

.nd-qty-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}

.nd-qty-btn .material-symbols-outlined {
  font-size: 20px;
  color: #1d1d1b;
}

.nd-qty-input {
  width: 32px;
  height: 24px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #1d1d1b;
  outline: none;
  -moz-appearance: textfield;
}

.nd-qty-input::-webkit-outer-spin-button,
.nd-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nd-btn-add-to-cart {
  width: 100%;
  background: #17406f;
  color: #ffffff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 1px solid #17406f;
  cursor: pointer;
  font-family: 'Mulish', sans-serif;
  transition: background 0.2s ease;
}

.nd-btn-add-to-cart:hover {
  background: #0f2d4f;
}

.nd-empty-message {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  color: #646a6f;
  text-align: center;
  padding: 40px 0;
  grid-column: 1 / -1;
}

.hiddenLabel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1200px) {
  .nd-featured-products {
    padding: 60px calc((100vw - var(--siteWidth)) / 2);
  }
}

@media (max-width: 768px) {
  .nd-featured-products {
    padding: 48px calc((100vw - var(--siteWidth)) / 2);
  }
  .nd-product-card {
    min-width: 200px;
    max-width: 200px;
  }
  .nd-product-image {
    height: 150px;
  }
  .nd-fp-title {
    font-size: 28px;
  }
}

/* -- Section 5: Member Benefits -- */
.nd-member-benefits {
  background: linear-gradient(135deg, #c8232c 0%, #8b0d12 100%);
  padding: 80px calc((100vw - var(--siteWidth)) / 2);
  position: relative;
  overflow: hidden;
}

.nd-mb-inner {
  max-width: var(--siteWidth);
  margin: 0 auto;
}

.nd-mb-header {
  margin-bottom: 32px;
}

.nd-mb-title {
  font-family: 'Mulish', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.nd-mb-title strong {
  font-weight: 800;
}

.nd-mb-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  max-width: 460px;
}

/* Body: cards left + image right */
.nd-mb-body {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.nd-mb-cards-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nd-mb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.nd-mb-card-full {
  grid-column: 1 / -1;
}

/* Card: vertical layout (icon+title top, text bottom) */
.nd-mb-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
}

.nd-mb-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nd-mb-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.nd-mb-card-header .material-symbols-outlined {
  font-size: 24px;
  color: #ffffff;
}

.nd-mb-card-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nd-mb-card-title {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.nd-mb-card-text {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.5;
}

/* Image column: right side */
.nd-mb-image-col {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
  overflow: hidden;
  border-radius: 4px;
}

.nd-mb-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA button: full width inside left column */
.nd-mb-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 16px;
  background: #ffffff;
  color: #ec2426;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nd-mb-cta-btn .material-symbols-outlined {
  font-size: 20px;
  color: #ec2426;
}

.nd-mb-cta-btn .fab {
  font-size: 20px;
  color: #ec2426;
}

.nd-mb-cta-btn:hover {
  background: #f0f0f0;
  color: #ec2426;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .nd-member-benefits {
    padding: 60px calc((100vw - var(--siteWidth)) / 2);
  }
  .nd-mb-image-col {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .nd-member-benefits {
    padding: 40px calc((100vw - var(--siteWidth)) / 2);
  }
  .nd-mb-desc {
    max-width: 100%;
  }
  .nd-mb-body {
    flex-direction: column;
  }
  .nd-mb-grid {
    grid-template-columns: 1fr;
  }
  .nd-mb-card-full {
    grid-column: auto;
  }
  .nd-mb-image-col {
    width: 100%;
    height: 280px;
    margin-top: 24px;
  }
  .nd-mb-title {
    font-size: 28px;
  }
}

/* -- Section 6: Why Businesses Choose -- */
.nd-why-choose {
  background: linear-gradient(135deg, #072b54 0%, #245689 100%);
  padding: 80px calc((100vw - var(--siteWidth)) / 2);
  position: relative;
  overflow: hidden;
}

.nd-why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/Assets/Images/c1ec0f9fdaeddc015458e6fa5ef0be140d230f5f.jpg') center/cover no-repeat;
  opacity: 0.06;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.nd-why-choose > * {
  position: relative;
  z-index: 1;
}

.nd-why-choose-inner {
  max-width: var(--siteWidth);
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nd-why-choose-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nd-why-choose-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nd-why-choose-title {
  font-family: 'Mulish', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 44px;
  max-width: 460px;
}

.nd-why-choose-title strong {
  font-weight: 800;
  color: #ec2426;
}

.nd-why-choose-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #9EAFC3;
  line-height: 24px;
  max-width: 460px;
}

.nd-why-choose-buttons {
  display: flex;
  gap: 8px;
}

.nd-why-btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 16px;
  background: #ec2426;
  color: #fefefe;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nd-why-btn-red .fab {
  font-size: 18px;
  color: #ffffff;
}

.nd-why-btn-red:hover {
  background: #d41e20;
  color: #ffffff;
  text-decoration: none;
}

.nd-why-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #ffffff;
  color: #0E0F0C;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #C5C5C5;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nd-why-btn-white:hover {
  background: #f5f5f5;
  color: #0E0F0C;
  text-decoration: none;
}

.nd-why-choose-right {
  width: 495px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nd-why-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 24px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: background 0.2s ease;
}

.nd-why-card:hover {
  background: rgba(255, 255, 255, 0.20);
}

.nd-why-card-icon {
  font-size: 32px;
  color: #ffffff;
  flex-shrink: 0;
}

.nd-why-card-title {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.nd-why-card-text {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  line-height: 18px;
}

@media (max-width: 1200px) {
  .nd-why-choose {
    padding: 80px calc((100vw - var(--siteWidth)) / 2);
  }
  .nd-why-choose-right {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .nd-why-choose {
    padding: 48px calc((100vw - var(--siteWidth)) / 2);
  }
  .nd-why-choose-inner {
    flex-direction: column;
  }
  .nd-why-choose-right {
    width: 100%;
  }
  .nd-why-choose-buttons {
    flex-direction: column;
  }
  .nd-why-choose-title {
    font-size: 28px;
    line-height: 34px;
  }
}

/* -- Section 7: Stay Informed -- */
.nd-stay-informed {
  position: relative;
  overflow: hidden;
}

.nd-stay-informed-inner {
  display: flex;
  align-items: stretch;
  min-height: 627px;
}

.nd-stay-informed-left {
  width: 55%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 100px 60px 100px calc((100vw - var(--siteWidth)) / 2);
  position: relative;
  z-index: 2;
  background: #ffffff;
}

.nd-si-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nd-si-title {
  font-family: 'Mulish', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #17406F;
  line-height: 44px;
  text-transform: uppercase;
}

.nd-si-title strong {
  font-weight: 800;
  color: #ec2426;
}

.nd-si-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1b;
  line-height: 24px;
  max-width: 460px;
}

.nd-si-form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nd-newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
  padding: 2px 2px 2px 16px;
}

.nd-newsletter-input-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  background: #ffffff;
  border: 1px solid #EEF1F3;
  padding-left: 16px;
}

.nd-newsletter-icon {
  font-size: 20px;
  color: #9B9BA7;
}

.nd-newsletter-input {
  flex: 1;
  padding: 10px 8px;
  border: none;
  background: transparent;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.nd-newsletter-input::placeholder {
  color: #8a8a93;
}

.nd-newsletter-subscribe {
  padding: 10px 16px;
  background: #ec2426;
  color: #fefefe;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.nd-newsletter-subscribe:hover {
  background: #d41e20;
}

.nd-newsletter-note {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1b;
  line-height: 18px;
}

.nd-newsletter-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.nd-topic-item {
  background: #FAFAFA;
  border: none;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: background .15s;
}

.nd-topic-item:hover {
  background: #F2F2F2;
}

.nd-topic-item:hover {
  background: #f5f5f5;
}

.nd-topic-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #c9ccd1;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
  margin: 0 8px 0 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: background .15s, border-color .15s;
}

.nd-topic-checkbox:hover {
  border-color: #ec2426;
}

.nd-topic-checkbox:checked {
  background: #ec2426;
  border-color: #ec2426;
}

.nd-topic-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.nd-topic-checkbox:focus-visible {
  outline: 2px solid rgba(236, 36, 38, 0.35);
  outline-offset: 2px;
}

.nd-topic-title {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1b;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nd-topic-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #646a6f;
  line-height: 18px;
  padding-left: 24px;
}

.nd-stay-informed-right {
  flex: 1;
  position: relative;
}

.nd-stay-informed-right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nd-stay-informed-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
  z-index: 1;
}

@media (max-width: 1200px) {
  .nd-stay-informed-left {
    width: 55%;
    padding: 60px 40px 60px calc((100vw - var(--siteWidth)) / 2);
  }
}

@media (max-width: 768px) {
  .nd-stay-informed-inner {
    flex-direction: column;
  }
  .nd-stay-informed-left {
    width: 100%;
    padding: 48px 24px;
  }
  .nd-stay-informed-right {
    height: 300px;
  }
  .nd-stay-informed-right::before {
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
  }
  .nd-newsletter-topics {
    grid-template-columns: 1fr;
  }
  .nd-si-title {
    font-size: 28px;
    line-height: 34px;
  }
}

/* ============================================
   NEW DESIGN - PRODUCT DETAILS PAGE (PDP)
   ============================================ */

.nd-pdp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 60px;
}

/* Banner */
.nd-pdp-banner {
  background: #c8232c;
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.nd-pdp-banner-text h3 {
  font-family: 'Mulish', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.nd-pdp-banner-text p {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
}

.nd-pdp-banner-img img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* Back link */
.nd-pdp-back {
  margin-bottom: 20px;
}

.nd-pdp-back a {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nd-pdp-back a:hover {
  color: #ec2426;
}

.nd-pdp-back .material-symbols-outlined {
  font-size: 18px;
}

/* Main two-column layout */
.nd-pdp-main {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left: Product image */
.nd-pdp-image {
  width: 45%;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #eef1f3;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  aspect-ratio: 1 / 1;
}

.nd-pdp-image .nd-pdp-fav-wrap {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.nd-pdp-image-main {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Right: Product info */
.nd-pdp-info {
  flex: 1;
}

.nd-pdp-name {
  font-family: 'Mulish', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1d1d1b;
  line-height: 1.3;
  margin-bottom: 16px;
}

/* Specs */
.nd-pdp-specs {
  background: #f9fafb;
  border: 1px solid #eef1f3;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 20px;
}

.nd-pdp-specs p {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  margin-bottom: 2px;
}

.nd-pdp-sku {
  font-weight: 500 !important;
  color: #646a6f !important;
}

.nd-pdp-dimensions {
  margin-top: 8px;
}

.nd-pdp-dimensions span {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: #333;
  display: block;
  line-height: 1.6;
}

.nd-pdp-description {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eef1f3;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
}

/* Purchase section */
.nd-pdp-purchase {
  margin-bottom: 20px;
}

.nd-pdp-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.nd-pdp-price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nd-pdp-price-current {
  font-family: 'Mulish', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1b;
}

.nd-pdp-price-msrp {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8a8a93;
  text-decoration: line-through;
}

.nd-pdp-out-of-stock {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ec2426;
}

/* Qty control on PDP */
.nd-pdp-purchase .nd-qty-control {
  margin-left: auto;
}

/* Buttons */
.nd-pdp-buttons {
  display: flex;
  gap: 12px;
}

.nd-pdp-btn-wrap {
  flex: 1;
}

.nd-pdp-btn-cart {
  width: 100%;
  padding: 12px 24px;
  background: #ffffff;
  color: #1d1d1b;
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.nd-pdp-btn-cart:hover {
  background: #f5f5f5;
  text-decoration: none;
  color: #1d1d1b;
}

.nd-pdp-btn-checkout {
  flex: 1;
  padding: 12px 24px;
  background: #ec2426;
  color: #ffffff;
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.nd-pdp-btn-checkout:hover {
  background: #d41e20;
  color: #ffffff;
  text-decoration: none;
}

/* Security note */
.nd-pdp-security {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #646a6f;
  margin-bottom: 24px;
  padding-top: 12px;
}

.nd-pdp-security .material-symbols-outlined {
  font-size: 16px;
  color: #646a6f;
}

/* Share section */
.nd-pdp-share {
  border-top: 1px solid #eef1f3;
  padding-top: 20px;
}

.nd-pdp-share-label {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1d1d1b;
  display: block;
  margin-bottom: 12px;
}

.nd-pdp-share-icons {
  display: flex;
  justify-content: space-between;
}

.nd-pdp-share-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nd-pdp-share-icon:hover {
  opacity: 0.7;
  text-decoration: none;
}

.nd-pdp-share-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nd-pdp-share-icon .material-symbols-outlined {
  font-size: 32px;
  color: #1d1d1b;
}

.nd-pdp-share-icon span:last-child {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #1d1d1b;
}

/* Responsive */
@media (max-width: 1200px) {
  .nd-pdp {
    padding: 0 40px 40px;
  }
}

@media (max-width: 768px) {
  .nd-pdp {
    padding: 0 24px 40px;
  }
  .nd-pdp-main {
    flex-direction: column;
    gap: 24px;
  }
  .nd-pdp-image {
    width: 100%;
  }
  .nd-pdp-banner {
    flex-direction: column;
    gap: 16px;
  }
  .nd-pdp-buttons {
    flex-direction: column;
  }
  .nd-pdp-price-row {
    flex-wrap: wrap;
  }
}

/* ============================================
   NEW DESIGN - RELATED PRODUCTS
   ============================================ */

.nd-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eef1f3;
}

.nd-related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.nd-related-title {
  font-family: 'Mulish', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1b;
}

.nd-related-nav {
  display: flex;
  gap: 8px;
}

.nd-related-prev,
.nd-related-next {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nd-related-prev:hover,
.nd-related-next:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

.nd-related-prev .material-symbols-outlined,
.nd-related-next .material-symbols-outlined {
  font-size: 20px;
  color: #1d1d1b;
}

.nd-related-slider {
  overflow: hidden;
}

.nd-related-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.nd-related-track::-webkit-scrollbar {
  display: none;
}

.nd-related-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.nd-related-track.is-dragging a,
.nd-related-track.is-dragging button {
  pointer-events: none;
}

.nd-related .nd-product-card {
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nd-related .nd-product-card {
    min-width: 180px;
    max-width: 180px;
  }
  .nd-related-title {
    font-size: 20px;
  }
}

/* ============================================
   NEW DESIGN - PRODUCT LIST PAGE (PLP)
   ============================================ */

.nd-plp {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc((100vw - var(--siteWidth)) / 2);
}

.nd-plp-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.nd-plp-layout {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

/* ---- Sidebar ---- */
.nd-plp-sidebar {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-right: 1px solid #eef1f3;
}

/* Member Banner - full width in content area */
.nd-plp-member-banner {
  background: #c8232c;
  border-radius: 8px;
  padding: 32px 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.nd-plp-member-text {
  position: relative;
  z-index: 1;
}

.nd-plp-member-title {
  font-family: 'Mulish', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.nd-plp-member-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.5;
  margin-bottom: 16px;
}

.nd-plp-member-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  background: #17406f;
  color: #ffffff;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid #17406f;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nd-plp-member-btn:hover {
  background: #0f2d4f;
  color: #ffffff;
  text-decoration: none;
}

.nd-plp-member-btn .fab {
  font-size: 16px;
  color: #ffffff;
}

.nd-plp-member-img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.nd-plp-member-img img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

/* ---- Sidebar filter styles ---- */
.nd-plp-sidebar .productFilterSection {
  width: 100%;
  padding: 0;
}

.nd-plp-sidebar .filterInner {
  padding: 8px 0;
}

.nd-plp-sidebar .productFilterHeading {
  display: none;
}

/* Hide all checkboxes in sidebar */
.nd-plp-sidebar .tabToggle,
.nd-plp-sidebar input[type="checkbox"] {
  display: none !important;
}

.nd-plp-sidebar .filterTab {
  margin-bottom: 8px;
  border: none;
  padding: 12px 14px;
  background: #ffffff;
  border-radius: 4px;
}

.nd-plp-sidebar .tabLabel {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1b;
  display: block;
  margin-bottom: 6px;
  cursor: default;
}

.nd-plp-sidebar .productFilterItems {
  max-height: 300px;
  overflow-y: auto;
  display: block !important;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.nd-plp-sidebar .productFilterItems::-webkit-scrollbar {
  width: 4px;
}

.nd-plp-sidebar .productFilterItems::-webkit-scrollbar-track {
  background: transparent;
}

.nd-plp-sidebar .productFilterItems::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.nd-plp-sidebar .productFilterItems ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nd-plp-sidebar .productFilterItems ul li {
  margin-bottom: 1px;
}

.nd-plp-sidebar .productFilterItems ul li a {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: 2px 0;
  line-height: 1.4;
}

.nd-plp-sidebar .productFilterItems ul li a:hover,
.nd-plp-sidebar .productFilterItems ul li.active a {
  color: #ec2426;
  font-weight: 600;
}

.nd-plp-sidebar .filterMenuToggle_label,
.nd-plp-sidebar .filterMenuToggle_input,
.nd-plp .filterMenuToggle,
.nd-plp .filterMenuToggle_label,
.nd-plp .filterMenuToggle_input {
  display: none !important;
}

/* Hide price range checkboxes in sidebar */
.nd-plp-sidebar .productFilterItems ul li label {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}

/* ---- Hide breadcrumbs, restyle sort-by ---- */
.nd-plp-content .breadcrumbAndSearchBar .breadcrumb {
  display: none !important;
}

.nd-plp-content .breadcrumbAndSearchBar {
  background: none;
  padding: 0;
  margin: 0 0 16px;
  border: none;
}

.nd-plp-content .breadcrumbAndSearchBar .inner {
  padding: 0;
  max-width: 100%;
}

.nd-plp-content .sortByAndLayout {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  width: 100%;
  float: right;
}

.nd-plp-content .sortByAndLayout .sortBy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nd-plp-content .sortByAndLayout .sortBy label {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1b;
  white-space: nowrap;
  margin: 0;
}

.nd-plp-content .sortByAndLayout .ddlStyle {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #1d1d1b;
  cursor: pointer;
}

/* Hide list/grid layout toggle */
.nd-plp-content .sortByAndLayout .layout {
  display: none;
}

/* ---- Content area ---- */
.nd-plp-content {
  flex: 1;
  min-width: 0;
  padding: 16px 0 40px 20px;
}

/* Hide breadcrumb default styles, keep clean */
.nd-plp-content .breadcrumb {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  padding: 0;
  margin: 0 0 12px;
  background: none;
}

.nd-plp-heading h1 {
  font-family: 'Mulish', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1b;
  margin-bottom: 4px;
}

.nd-plp-heading p {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #646a6f;
}

/* ---- Product grid: 5 columns per design ---- */
.nd-plp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.nd-plp-grid .nd-product-card {
  min-width: unset;
  max-width: unset;
  border: 1px solid #eef1f3;
}

/* Bookmark / favourite on PLP */
.nd-plp-fav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.15;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.nd-plp-fav-btn .material-symbols-outlined {
  font-size: 20px;
  color: #1c1b1f;
}

.nd-product-card:hover .nd-plp-fav-btn {
  opacity: 0.4;
}

.nd-plp-fav-btn:hover {
  opacity: 1 !important;
}

.nd-product-bookmark-wrap {
  position: absolute;
  top: 4px;
  right: 4px;
}

.nd-contact-pricing {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  color: #ec2426;
  text-decoration: none;
}

.nd-contact-pricing:hover {
  text-decoration: underline;
}

.nd-special-order {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 50px;
  height: auto;
}

/* ---- Pagination ---- */
.nd-plp-pagination {
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px solid #eef1f3;
}

.nd-plp-pagination .PageNavigation {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.nd-plp-pagination table {
  border-collapse: separate;
  border-spacing: 4px 0;
}

.nd-plp-pagination a,
.nd-plp-pagination input[type="submit"],
.nd-plp-pagination .aspNetDisabled {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #1d1d1b;
  text-decoration: none;
  transition: all 0.15s ease;
  background: #fff;
  cursor: pointer;
  display: inline-block;
}

.nd-plp-pagination a:hover,
.nd-plp-pagination input[type="submit"]:hover {
  background: #f5f5f5;
  text-decoration: none;
}

.nd-plp-pagination span:not(.aspNetDisabled) {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #17406f;
  border-radius: 3px;
  color: #ffffff;
  background: #17406f;
  display: inline-block;
}

.nd-plp-pagination .aspNetDisabled {
  opacity: 0.5;
  cursor: default;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .nd-plp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .nd-plp-member-title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .nd-plp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nd-plp-sidebar {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .nd-plp-layout {
    flex-direction: column;
  }
  .nd-plp-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eef1f3;
  }
  .nd-plp-content {
    padding: 16px 0 40px 0;
  }
  .nd-plp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .nd-plp-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   NEW DESIGN - CHECKOUT PAGE
   ============================================ */

.nd-checkout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 120px 60px;
}

.nd-checkout-back {
  margin-bottom: 24px;
}

.nd-checkout-back a {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nd-checkout-back a:hover {
  color: #ec2426;
}

.nd-checkout-back .material-symbols-outlined {
  font-size: 20px;
}

/* Two-column layout */
.nd-checkout-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.nd-checkout-left {
  flex: 1;
  min-width: 0;
}

.nd-checkout-right {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

/* Restyle the existing cart table inside checkout */
.nd-checkout-left .checkoutTabs {
  display: none !important;
}

.nd-checkout-cart-section .similar-checkout-div {
  box-shadow: none !important;
  position: static !important;
}

.nd-checkout-cart-section .checkout-section {
  border: none !important;
  padding: 0 !important;
}

/* Restyle cart table */
.nd-checkout-cart-section .cs_table {
  width: 100%;
  border: none;
}

.nd-checkout-cart-section .cs_tableHead {
  background: #f9fafb;
  border-radius: 6px;
  margin-bottom: 8px;
}

.nd-checkout-cart-section .cs_tableHead .cs_tableRow {
  display: flex;
  align-items: center;
  padding: 10px 16px;
}

.nd-checkout-cart-section .cs_tableHead .cs_tableColumn {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #1d1d1b;
  text-transform: uppercase;
}

.nd-checkout-cart-section .cs_tableBody .cs_tableRow {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eef1f3;
  gap: 12px;
}

.nd-checkout-cart-section .cs_tableBody .cs_tableColumn .label {
  display: none;
}

.nd-checkout-cart-section .cs_image {
  width: 80px;
  flex-shrink: 0;
}

.nd-checkout-cart-section .cs_image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 4px;
  background: #f9fafb;
  padding: 0 !important;
}

.nd-checkout-cart-section .cs_ShoppingCartSummary {
  flex: 1;
  min-width: 0;
}

.nd-checkout-cart-section .cs_ShoppingCartSummary a {
  text-decoration: none;
  color: #1d1d1b;
}

.nd-checkout-cart-section .cs_ShoppingCartSummary .pName a {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nd-checkout-cart-section .cs_ShoppingCartSummary .skuNumber a {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  color: #8a8a93;
}

.nd-checkout-cart-section .cs_Quantity {
  width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.nd-checkout-cart-section .cs_Quantity .form-control,
.nd-checkout-cart-section .cs_Quantity .NumberField {
  width: 60px !important;
  height: 32px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  padding: 4px;
}

.nd-checkout-cart-section .cs_Price {
  width: 80px;
  text-align: right;
  flex-shrink: 0;
}

.nd-checkout-cart-section .cs_Price label {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1b;
}

.nd-checkout-cart-section .cs_Total {
  width: 90px;
  text-align: right;
  flex-shrink: 0;
}

.nd-checkout-cart-section .cs_Total label {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1d1d1b;
}

.nd-checkout-cart-section .cs_Delete {
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.nd-checkout-cart-section .cs_Delete a {
  color: #ec2426;
  text-decoration: none;
}

.nd-checkout-cart-section .cs_Delete a:hover {
  color: #d41e20;
}

/* Cart summary section */
.nd-checkout-cart-section .cartBottomSection {
  margin-top: 16px;
}

.nd-checkout-cart-section .cs_promoSection .cs_tableRow {
  display: flex;
  align-items: center;
  padding: 6px 0;
  gap: 12px;
}

.nd-checkout-cart-section .cs_promoInput {
  flex: 1;
}

.nd-checkout-cart-section .cs_promoInput .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
}

.nd-checkout-cart-section .cs_promoButton .btn {
  background: #1d1d1b;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-transform: none;
}

.nd-checkout-cart-section .cs_promoSubTotalLabel {
  text-align: right;
  min-width: 100px;
}

.nd-checkout-cart-section .cs_promoSubTotalLabel strong {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  color: #1d1d1b;
}

.nd-checkout-cart-section .cs_promoSubTotal {
  text-align: right;
  min-width: 80px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1b;
}

/* Checkout buttons */
.nd-checkout-cart-section .cs_checkoutButtonsTable {
  width: 100%;
  margin-top: 24px !important;
}

.nd-checkout-cart-section .cs_checkoutButtonsContainer {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nd-checkout-cart-section .cs_checkoutButtonsContainer .btn {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #ddd;
  text-transform: none;
}

.nd-checkout-cart-section .cs_checkoutButtonsContainer .btnBlue {
  background: #17406f;
  color: #fff;
  border-color: #17406f;
}

.nd-checkout-cart-section .cs_checkoutButtonsContainer .btnOrange {
  background: #ec2426;
  color: #fff;
  border-color: #ec2426;
}

/* Right sidebar */
.nd-checkout-member-banner {
  background: #ec2426;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 16px;
}

.nd-checkout-member-text h4 {
  font-family: 'Mulish', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
}

.nd-checkout-member-text p {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}

.nd-checkout-member-banner img {
  height: 64px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---- Address page form restyling ---- */
.nd-checkout-address .addressesContainer {
  padding: 0 !important;
  max-width: 100% !important;
}

.nd-checkout-address .formStyle {
  display: block !important;
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

.nd-checkout-section-title {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1b;
  margin-bottom: 20px;
}

/* Form fields */
.nd-checkout-form .textField {
  margin-bottom: 12px;
  padding: 0 !important;
}

.nd-checkout-form .textField label {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1b;
  margin-bottom: 4px;
  display: block;
}

.nd-checkout-form .textField .form-control,
.nd-checkout-form .textField input.form-control,
.nd-checkout-form .textField select.form-control {
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  padding: 10px 12px !important;
  height: 42px !important;
  font-family: 'Mulish', sans-serif !important;
  font-size: 14px !important;
  background: #fff !important;
  width: 100% !important;
}

.nd-checkout-form .textField textarea.form-control {
  height: auto !important;
  min-height: 80px;
}

.nd-checkout-form .textField .dropdownControl {
  height: 42px !important;
}

/* Hide old section headings, restyle */
.nd-checkout-form .textField h2 {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1b;
  text-align: left !important;
  margin: 16px 0 8px;
  padding-top: 16px;
  border-top: 1px solid #eef1f3;
}

/* Same as billing checkbox */
.nd-checkout-form .checkBoxField {
  margin: 8px 0 12px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
}

/* Shipping method */
.nd-checkout-form .shippingMethod {
  margin-top: 16px;
}

.nd-checkout-form .shippingMethod .RBL {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
}

.nd-checkout-form .shippingMethod .RBL label {
  font-weight: 400;
}

/* Button section */
.nd-checkout-form .btnSection {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eef1f3;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nd-checkout-form .btnSection .btnOrange {
  background: #ec2426 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 24px !important;
  font-family: 'Mulish', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  flex: 1;
}

.nd-checkout-form .btnSection .btnBlue {
  background: #fff !important;
  color: #1d1d1b !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  padding: 12px 24px !important;
  font-family: 'Mulish', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none;
}

/* Validation errors */
.nd-checkout-form .ValidationError {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: #ec2426;
  display: block;
  margin-top: 2px;
}

.nd-checkout-form .Message {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: #ec2426;
  display: block;
  margin-top: 8px;
}

/* Ship-to dropdown */
.nd-checkout-form .shipping-address-panel .FormNote {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: #8a8a93;
  margin-bottom: 8px;
  display: block;
}

.nd-checkout-form .shipping-address-panel .btn-primary {
  background: #17406f;
  border-color: #17406f;
  font-size: 12px;
  border-radius: 4px;
  padding: 6px 12px;
  float: right;
  margin-bottom: 8px;
}

/* Hide spinner old styles override */
.nd-checkout-form .Spinner {
  position: fixed;
  z-index: 9999;
  background: rgba(255,255,255,0.8);
}

/* Policy links */
.nd-checkout-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 16px;
  padding: 12px 0;
}

.nd-checkout-policy-links a {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: #646a6f;
  text-decoration: underline;
}

.nd-checkout-policy-links a:hover {
  color: #ec2426;
}

/* Hide old elements in nd-checkout */
.nd-checkout .breadcrumbAndSearchBar,
.nd-checkout .pageHeadingSection,
.nd-checkout .checkoutTabs {
  display: none !important;
}

/* Hide map in checkout */
.nd-checkout-form .pickUpMap {
  display: none;
}

/* ---- Payment section on checkout ---- */
.nd-checkout-payment-section {
  border-top: 1px solid #eef1f3;
  padding-top: 20px;
  margin-top: 20px;
}

.nd-checkout-payment-note {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: #8a8a93;
  margin-bottom: 16px;
}

.nd-checkout-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.nd-checkout-payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
}

.nd-checkout-payment-method.active,
.nd-checkout-payment-method:has(input:checked) {
  border-color: #1d1d1b;
}

.nd-checkout-payment-method input[type="radio"] {
  accent-color: #1d1d1b;
}

.nd-pm-label {
  font-weight: 600;
  color: #1d1d1b;
  flex: 1;
}

.nd-pm-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nd-pm-icons img {
  height: 24px;
  width: auto;
}

/* Pay button */
.nd-checkout-pay-btn {
  width: 100%;
  background: #ec2426 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px !important;
  font-family: 'Mulish', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer;
  text-transform: none !important;
  margin-bottom: 12px;
}

.nd-checkout-pay-btn:hover {
  background: #d41e20 !important;
}

.nd-checkout-continue-link {
  display: block;
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: #646a6f;
  text-decoration: underline;
  margin-top: 8px;
}

.nd-checkout-terms {
  margin-top: 16px;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: #8a8a93;
  line-height: 1.5;
}

.nd-checkout-terms a {
  color: #1d1d1b;
  text-decoration: underline;
}

/* Stripe form */
.nd-stripe-form {
  background: #f9fafb;
  border: 1px solid #eef1f3;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
}

.nd-stripe-form #stripe-card-element {
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nd-stripe-form #stripe-card-error {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: #ec2426;
  margin-top: 8px;
}

/* Promo code */
.nd-checkout-promo {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.nd-promo-input {
  flex: 1;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  padding: 10px 12px !important;
  font-family: 'Mulish', sans-serif !important;
  font-size: 13px !important;
  height: 42px !important;
}

.nd-promo-btn {
  background: #1d1d1b !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 10px 20px !important;
  font-family: 'Mulish', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer;
  white-space: nowrap;
}

.nd-promo-btn:hover {
  background: #333 !important;
}

.nd-promo-message {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: #17406f;
  display: block;
  margin-top: 4px;
  margin-bottom: 12px;
}

/* ---- Review & Pay page ---- */
.nd-checkout-payment .nd-checkout-rp-content {
  max-width: 100%;
}

.nd-checkout-payment .nd-checkout-rp-content .checkout-div {
  display: block !important;
}

.nd-checkout-payment .nd-checkout-rp-content .col-lg-6 {
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}

.nd-checkout-payment .nd-checkout-rp-content h2 {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1b;
  text-align: left !important;
  margin: 0 0 12px !important;
}

.nd-checkout-payment .nd-checkout-rp-content .address-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

.nd-checkout-payment .nd-checkout-rp-content .address-list .list-heading {
  font-weight: 700;
  margin-bottom: 4px;
}

.nd-checkout-payment .nd-checkout-rp-content .row.mt-4 .col-sm-6 {
  display: inline-block;
  vertical-align: top;
  max-width: 48%;
  padding: 0 8px 0 0 !important;
}

/* Stripe form styling */
.nd-checkout-payment .stripe-form {
  margin-top: 16px;
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #eef1f3;
  border-radius: 6px;
}

.nd-checkout-payment #BPayment {
  width: 100%;
  background: #ec2426;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
}

.nd-checkout-payment #BPayment:hover {
  background: #d41e20;
}

.nd-checkout-payment .continueOrPay {
  margin-top: 16px;
  padding: 0 !important;
}

.nd-checkout-payment .paymentBtnContainer {
  text-align: left !important;
}

.nd-checkout-payment .paymentBtnContainer .green,
.nd-checkout-payment .continueShoppingContainer a {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.nd-checkout-payment .paymentBtnContainer .green {
  background: #17406f;
  color: #fff;
  border: none;
}

.nd-checkout-payment .continueShoppingContainer a {
  background: #fff;
  color: #1d1d1b;
  border: 1px solid #ddd;
}

/* Address summary on payment page */
.nd-checkout-address-summary {
  background: #f9fafb;
  border: 1px solid #eef1f3;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .nd-checkout {
    padding: 24px 40px 40px;
  }
  .nd-checkout-right {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .nd-checkout {
    padding: 16px 24px 40px;
  }
  .nd-checkout-layout {
    flex-direction: column;
  }
  .nd-checkout-right {
    width: 100%;
    position: static;
  }
  .nd-checkout-cart-section .cs_tableHead {
    display: none;
  }
  .nd-checkout-cart-section .cs_tableBody .cs_tableRow {
    flex-wrap: wrap;
  }
  .nd-checkout-cart-section .cs_tableBody .cs_tableColumn .label {
    display: block;
    font-size: 11px;
    color: #8a8a93;
    margin-bottom: 2px;
  }
}

/* ============================================
   NEW DESIGN - CART DRAWER
   ============================================ */

.nd-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  display: none;
}

.nd-cart-overlay.open {
  display: block;
}

.nd-cart-drawer,
.nd-cart-drawer.headerCart,
.checkout-section.nd-cart-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  width: 400px !important;
  height: 100vh !important;
  max-height: 100vh !important;
  background: #ffffff !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12) !important;
  transform: translateX(100%);
  transition: transform 0.3s ease !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.nd-cart-drawer.open,
.nd-cart-drawer.headerCart.open {
  transform: translateX(0);
}

.nd-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eef1f3;
  flex-shrink: 0;
}

.nd-cart-title {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1b;
  margin: 0;
}

.nd-cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s;
}

.nd-cart-close .material-symbols-outlined {
  font-size: 24px;
  color: #1d1d1b;
}

.nd-cart-close:hover {
  opacity: 0.6;
}

/* Kill old jQuery slideDown/slideUp — force display via class only */
.headerCart.nd-cart-drawer {
  display: flex !important;
}

/* Cart Items */
.nd-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
}

.nd-cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid #eef1f3;
  position: relative;
  align-items: flex-start;
}

.nd-cart-item-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nd-cart-item-info {
  flex: 1;
  min-width: 0;
  padding-right: 28px;
}

.nd-cart-item-name {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1b;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  margin-bottom: 2px;
}

.nd-cart-item-name:hover {
  color: #ec2426;
}

.nd-cart-item-sku {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #8a8a93;
  display: block;
  margin-bottom: 8px;
}

.nd-cart-item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nd-cart-item-price {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1d1d1b;
}

.nd-cart-item .nd-qty-control {
  transform: scale(0.85);
  transform-origin: right center;
}

.nd-cart-item-delete {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.nd-cart-item-delete .material-symbols-outlined {
  font-size: 18px;
  color: #ec2426;
}

.nd-cart-item-delete:hover .material-symbols-outlined {
  color: #d41e20;
}

/* Cart Footer */
.nd-cart-footer {
  flex-shrink: 0;
  padding: 0 24px 24px;
  border-top: 1px solid #eef1f3;
}

.nd-cart-member-banner {
  background: #ec2426;
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.nd-cart-member-text h4 {
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
}

.nd-cart-member-text p {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}

.nd-cart-member-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nd-cart-subtotal {
  padding: 12px 0;
}

.nd-cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.nd-cart-subtotal-row span {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1b;
}

.nd-cart-subtotal-amount {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1b;
}

.nd-cart-shipping-note {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #8a8a93;
  margin: 0;
}

.nd-cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #ec2426;
  color: #ffffff;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nd-cart-checkout-btn:hover {
  background: #d41e20;
  color: #ffffff;
  text-decoration: none;
}

.nd-cart-empty {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  color: #8a8a93;
  text-align: center;
  display: block;
  padding: 12px 0;
}

.nd-cart-empty-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: #f5f5f5;
  color: #1d1d1b;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 8px;
}

.nd-cart-head-hidden {
  display: none !important;
}

@media (max-width: 480px) {
  .nd-cart-drawer {
    width: 100%;
    right: -100%;
  }
}

/* ============================================
   NEW DESIGN - FOOTER
   ============================================ */

.nd-footer {
  background: #06192F;
  position: relative;
  overflow: hidden;
}

.nd-footer-watermark {
  position: absolute;
  top: -14.5%;
  left: -9.8%;
  width: 124%;
  height: 144%;
  pointer-events: none;
  z-index: 0;
}

.nd-footer-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  opacity: 0.03;
  filter: brightness(2);
}

.nd-footer-inner {
  width: var(--siteWidth);
  max-width: var(--siteWidth);
  margin: 0 auto;
  padding: 72px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.nd-footer-top {
  display: flex;
  gap: 51px;
  justify-content: space-between;
}

.nd-footer-brand {
  width: 238px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.nd-footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.nd-footer-logo-block img {
  height: 64px;
  width: auto;
}

.nd-footer-tagline {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
}

.nd-footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nd-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nd-footer-social a:hover {
  opacity: 0.8;
}

.nd-footer-social a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}


.nd-footer-links {
  display: flex;
  gap: 40px;
  flex: 1;
}

.nd-footer-col {
  flex: 1;
}

.nd-footer-heading {
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding-bottom: 8px;
  border-bottom: 2px solid #ec2426;
  display: inline-block;
  margin-bottom: 24px;
}

.nd-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nd-footer-col ul li a {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nd-footer-col ul li a:hover {
  color: #ffffff;
}

.nd-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(254, 254, 255, 0.15);
}

.nd-footer-copyright {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
}

.nd-footer-legal {
  display: flex;
  gap: 64px;
  align-items: center;
}

.nd-footer-legal a {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nd-footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .nd-footer-inner {
    padding: 60px 40px 0;
  }
  .nd-footer-links {
    gap: 24px;
  }
  .nd-footer-legal {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nd-footer-inner {
    padding: 48px 24px 0;
  }
  .nd-footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .nd-footer-brand {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .nd-footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }
  .nd-footer-col {
    min-width: 140px;
  }
  .nd-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-top: 40px;
  }
  .nd-footer-legal {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   NEW DESIGN - HEADER
   ============================================ */

/* Header: white, shadow, no old border */
header {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  border-bottom: none !important;
  padding-top: 12px !important;
  padding-bottom: 0 !important;
}

/* === ROW 1: Logo + Tagline | Search | Actions === */

/* Logo + tagline side by side */
.nd-logo-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
header .header-Left .cs_logoImg {
  max-height: 36px !important;
  width: auto !important;
}
.nd-logo-tagline {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #17406f;
  white-space: nowrap;
}
.nd-logo-tagline strong {
  font-weight: 700;
  font-style: normal;
  color: #ec2426;
}

/* Search bar */
header .header-Center .searchBar {
  border: 1px solid #d0d5db !important;
  border-radius: 4px !important;
  background: #fff !important;
}
header .header-Center .searchBar .searchText {
  font-size: 14px !important;
  background: transparent !important;
}
header .header-Center .searchBar .searchText::placeholder {
  font-size: 14px !important;
  color: #8a8a93 !important;
}
header .header-Center .searchBar .searchBtn {
  color: #8a8a93 !important;
}

/* === Right side actions === */
/* Hide old button styles, use new action links */
.nd-actions-row {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: nowrap !important;
}
.nd-actions-row .btn {
  display: none !important;
}

.nd-action-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1b;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
.nd-action-link:hover {
  color: #ec2426;
  text-decoration: none;
}
.nd-action-link .material-symbols-outlined {
  font-size: 20px;
  color: #555;
}
.nd-action-link:hover .material-symbols-outlined {
  color: #ec2426;
}

/* Membership: red outlined */
.nd-action-membership {
  border: 1.5px solid #ec2426;
  border-radius: 20px;
  padding: 5px 14px;
  color: #ec2426;
  font-weight: 600;
}
.nd-action-membership .material-symbols-outlined,
.nd-action-membership .fab {
  color: #ec2426;
  font-size: 14px;
}
.nd-action-membership:hover {
  background: #ec2426;
  color: #fff;
}
.nd-action-membership:hover .material-symbols-outlined,
.nd-action-membership:hover .fab {
  color: #fff;
}

/* Cart action */
.nd-action-cart {
  min-width: auto !important;
}
.nd-action-cart .add-cart {
  display: flex !important;
  align-items: center;
  gap: 5px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1b;
  cursor: pointer;
  position: relative;
}
.nd-action-cart .add-cart img {
  display: none !important;
}
.nd-action-cart .add-cart .material-symbols-outlined {
  font-size: 20px;
  color: #555;
  position: relative;
}
.nd-action-cart .add-cart .cs_cartNumber {
  position: absolute !important;
  top: -2px !important;
  left: 14px !important;
  right: auto !important;
  background: #ec2426 !important;
  height: 8px !important;
  width: 8px !important;
  min-width: 8px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  font-size: 0 !important;
  color: transparent !important;
  overflow: hidden !important;
  text-indent: -9999px !important;
}

/* Hide dot when cart is empty (text is "0") */
.nd-action-cart .add-cart .cs_cartNumber:empty,
.nd-action-cart .add-cart .cs_cartNumber[data-empty="true"] {
  display: none !important;
}

/* Account link with avatar circle */
.nd-action-signin a,
.nd-action-account a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1b;
  text-decoration: none;
}
.nd-action-signin .material-symbols-outlined,
.nd-action-account .material-symbols-outlined {
  font-size: 28px;
  color: #999;
}
.nd-action-signin a:hover,
.nd-action-account a:hover {
  color: #ec2426;
}

/* Hide old menuTrigger on desktop */
@media (min-width: 993px) {
  .nd-action-cart .menuTrigger {
    display: none !important;
  }
}

/* === Account Dropdown === */
.nd-account-dropdown {
  position: relative;
}

.nd-account-trigger {
  cursor: pointer !important;
}

.nd-arrow-down {
  font-size: 18px !important;
  color: #999 !important;
  margin-left: -2px;
  transition: transform 0.2s;
}

.nd-account-dropdown:hover .nd-arrow-down {
  transform: rotate(180deg);
  color: #ec2426 !important;
}

/* Dropdown menu */
.nd-account-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 8px 0;
  z-index: 1000;
}

.nd-account-dropdown:hover .nd-account-menu {
  display: block;
}

/* Small arrow on top of dropdown */
.nd-account-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
  transform: rotate(45deg);
}

.nd-account-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.nd-account-menu a:hover {
  background: #f5f5f5;
  color: #ec2426;
  text-decoration: none;
}

.nd-account-menu a .material-symbols-outlined {
  font-size: 18px;
  color: #888;
}

.nd-account-menu a:hover .material-symbols-outlined {
  color: #ec2426;
}

.nd-account-divider {
  height: 1px;
  background: #eee;
  margin: 6px 0;
}

/* Logout link: red */
.nd-account-menu .nd-logout-link {
  color: #ec2426 !important;
}
.nd-account-menu .nd-logout-link .material-symbols-outlined {
  color: #ec2426 !important;
}
.nd-account-menu .nd-logout-link:hover {
  background: #fef2f2 !important;
}

/* === ROW 2: Navigation + Request Quote === */

/* Make nav bar full width with top border */
header .nd-header-nav {
  margin-top: 8px;
}

/* Override the narrow width constraint on cs_hearderRow3 */
header .nd-header-nav .cs_hearderRow3 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Make .nav flex container: menu left, button right */
header .nd-header-nav .cs_hearderRow3 .nav {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

/* Menu items: left-aligned, not spread evenly */
header .nd-header-nav .nav .main_nav {
  justify-content: flex-start !important;
  width: auto !important;
  flex: 1;
}

/* Individual menu items */
header .nd-header-nav .nav .main_nav .main_li {
  padding: 14px 18px !important;
}
header .nd-header-nav .nav .main_nav .main_li > div > a {
  color: #1d1d1b !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: none !important;
  cursor: pointer !important;
}
header .nd-header-nav .nav .main_nav .main_li > div > a::after {
  background: #ec2426 !important;
}
header .nd-header-nav .nav .main_nav .main_li:hover > div > a {
  color: #ec2426 !important;
}
header .nd-header-nav .nav .main_nav .main_li > div > a .fa {
  display: inline-block !important;
  color: #aaa !important;
  font-size: 13px !important;
  padding-left: 4px !important;
}
header .nd-header-nav .nav .main_nav .main_li:hover > div > a .fa {
  color: #ec2426 !important;
}

/* Request Quote button: far right */
.nd-nav-request-quote {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #ec2426;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nd-nav-request-quote:hover {
  background: #d41e20;
  color: #fff;
  text-decoration: none;
}

/* === Responsive === */
@media (max-width: 992px) {
  .nd-logo-tagline {
    display: none;
  }
  .nd-actions-row {
    gap: 10px !important;
  }
  .nd-action-membership,
  .nd-action-link span:not(.material-symbols-outlined):not(.cs_cartNumber) {
    display: none;
  }
  .nd-nav-request-quote {
    display: none;
  }
  header .nd-header-nav .nav .main_nav .main_li {
    padding: 8px 12px !important;
  }
}

/* ============================================
   MEGA MENU - SIDEBAR + SUBCATEGORY PANEL
   ============================================ */

@media (min-width: 993px) {

  /* Dropdown container: white, full width */
  .nd-megamenu {
    background: #ffffff !important;
    border-bottom: none !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 400px;
    display: none !important;
    position: absolute !important;
    left: 0 !important;
    right: 0;
    width: 100% !important;
    transform: none !important;
    margin-top: 14px !important;
    flex-direction: row !important;
  }

  /* Show on parent hover */
  header .shopMenu:hover > div > .nd-megamenu {
    display: flex !important;
  }

  /* === LEFT SIDEBAR === */
  .nd-mega-sidebar {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    width: 200px;
    min-width: 200px;
    flex-shrink: 0;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
  }

  .nd-mega-cat {
    padding: 0;
    margin: 0;
  }

  .nd-mega-cat a {
    display: block;
    padding: 9px 20px;
    color: #1d1d1b;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.12s ease;
    border-left: 3px solid transparent;
  }

  .nd-mega-cat a:hover {
    background: #f8f8f8;
    color: #1d1d1b;
    text-decoration: none;
  }

  /* Active category: red background */
  .nd-mega-cat.active a {
    background: #ec2426;
    color: #ffffff;
    border-left-color: #ec2426;
  }

  /* === RIGHT PANEL === */
  .nd-mega-panels {
    flex: 1;
    position: relative;
    padding: 20px 28px;
    overflow-y: auto;
    max-height: 450px;
  }

  .nd-mega-panel {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 32px;
    align-content: start;
  }

  .nd-mega-panel.active {
    display: grid;
  }

  /* Subcategory column */
  .nd-mega-col {
    display: flex;
    flex-direction: column;
  }

  .nd-mega-col h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1d1d1b;
    margin: 0 0 6px 0;
    padding: 0;
  }

  .nd-mega-col h4:not(:first-child) {
    margin-top: 16px;
  }

  .nd-mega-col a {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    padding: 3px 0;
    line-height: 1.5;
    transition: color 0.15s;
  }

  .nd-mega-col a:hover {
    color: #ec2426;
    text-decoration: none;
  }

  /* === RIGHT PANEL: server subcategories === */
  .nd-mega-right {
    flex: 1;
    padding: 16px 24px;
    overflow-y: auto;
    max-height: 450px;
  }

  .nd-mega-subcats {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* Hide the li_heading in right panel (sidebar shows these) */
  .nd-mega-subcats > .li_heading,
  .nd-mega-subcats > .nd-subcat-heading {
    display: none !important;
  }

  /* Subcategory group: multi-column flow */
  .nd-subcat-group {
    column-count: 4;
    column-gap: 32px;
  }

  /* Each subcategory item */
  .nd-subcat-group > li {
    break-inside: avoid;
    padding: 0;
    margin: 0 0 3px 0;
    list-style: none;
  }

  .nd-subcat-group > li .nav_column {
    margin: 0 !important;
    padding: 0 !important;
  }

  .nd-subcat-group > li .columns {
    display: block !important;
  }

  .nd-subcat-group > li .columns a,
  .nd-subcat-group > li a {
    font-family: 'Mulish', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #555 !important;
    text-decoration: none !important;
    display: block;
    padding: 3px 0 !important;
    line-height: 1.5;
  }

  .nd-subcat-group > li .columns a:hover,
  .nd-subcat-group > li a:hover {
    color: #ec2426 !important;
  }

}

/* About menu dropdown */
@media (min-width: 993px) {
  header .aboutMenu > div > .sub_nav {
    background: #ffffff !important;
    border-bottom: 3px solid #ec2426 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    padding: 10px 0 !important;
    height: auto !important;
    width: 250px !important;
  }

  header .aboutMenu .sub_nav .nav_column_list {
    display: flex !important;
    flex-direction: column !important;
    grid-template-rows: none !important;
    grid-auto-flow: initial !important;
  }

  header .aboutMenu .sub_nav .li_heading .nav_column_heading > a {
    color: #1d1d1b !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px 20px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: block !important;
    background: transparent !important;
  }

  header .aboutMenu .sub_nav .li_heading .nav_column_heading > a:hover {
    background: #f5f5f5 !important;
    color: #ec2426 !important;
  }

  header .aboutMenu .sub_nav .li_heading:last-child .nav_column_heading > a {
    border-bottom: none !important;
  }
}

/*# sourceMappingURL=StyleSheet.css.map */