@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Hudson-NY';
  src: url(../fonts/Hudson-NY.otf);
}

* {
  margin: 0;
  padding: 0;
  transition: all .5s ease-in-out;
}

:root {
  --primary-red: #ce364c;
  --dark-bg: #1a1a1a;
  --light-gray: #f8f9fa;
  --white-color: #fff;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: 'Hudson-NY';
}

p {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  transition: all .5s ease-in-out;
}

/* Scroll Bar */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 1px;
}

body::-webkit-scrollbar-thumb {
  background: #ce364c;
  border-radius: 1px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #55000d;
}

/* loader styling start  */
/* loader styling end  */
/* header section STyling START  */
header {
  border-bottom: 1px solid #81818133;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
}

.fixedStart {
  padding-left: 230px !important;
  bottom: -80px !important;
  padding-bottom: 0 !important;
}

.product-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.fixedBorder {
  position: relative;
  min-height: 65px;
  display: flex;
  align-items: center;
}

.fixedBorder:before {
  content: "";
  position: absolute;
  top: 44px;
  width: 180px;
  height: 1px;
  background: #ffffff4d;
  left: -195px;
}

.descriptionbox p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
}

.descriptionbox {
  display: flex;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
}

.descriptionbox a {
  text-decoration: underline !important;
  cursor: pointer;
  color: #cc2a4d;
}

.radio-question span.text-success.small {
  margin-left: 14px;
}

.product-image.shp-imm img {
  width: 100%;
  margin: 0 auto;
  display: table;
  height: 350px;
  object-fit: contain;
}

.cart {
  position: fixed;
  background: #f3f3f3;
  width: 400px;
  max-width: 90%;
  height: 100%;
  top: 0;
  right: 0;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translate(500px, 0);
  transition: transform 250ms ease-in-out;
  z-index: 20;
}

body.open .cart {
  transform: translate(0, 0);
}

.prd-sli {
  border: 1px solid #00000070;
  /* height: 100%; */
  /* display: flex; */
  align-items: center;
  border-radius: 10px;
}
.productbox img {
    height: 500px;
    object-fit: contain;
    /* margin-bottom: 20px; */
    /* margin-top: 20px; */
}
.productbox {
    /* padding: 20px; */
}
.bottombox img {
    height: 160px;
    object-fit: contain;
}

.cart__header {
  box-sizing: border-box;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 15px 15px;
  display: flex;
  top: 0;
  align-items: center;
  justify-content: space-between;
  left: 0;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* .cart__header .cart__text {
  float: right;
} */
.cart__title {
  font-size: 20px;
  line-height: 40px;
  margin: 0;
  float: left;
}

.cart__products {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 70px 0;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  background-color: #fff;
}

ul.cart_list.product_list_widget.woocommerce-mini-cart {
  padding: 0;
}

.cart__products article {
  padding: 15px;
  border-bottom: 1px dotted #ccc;
}

.cart__products article h1 {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

.cart__products article p {
  font-size: 14px;
  margin: 0;
}

.cart__products article p a {
  color: #f00;
}

.cart__product {
  display: none;
}

.cart__empty {
  padding: 30px 15px;
  margin: 0;
  font-style: italic;
  text-align: center;
}

.cart__empty.hide {
  display: none;
}

.cart__footer {
  box-sizing: border-box;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 15px;
  left: 0;
  height: 175px;
  bottom: 0;
  z-index: 2;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.cart__text {
  margin: 0;
}

.cart__text a {
  display: block;
  width: 100%;
}

.crt-bt a {
  display: block;
  width: 100%;
  background: #f7f7f7;
  color: #000000;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
}

.crt-bt .check {
  background: #ce364c;
  color: #fff !important;
}

.crt-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 10px;
}

.cart__texton {
  margin: 0;
}

.crt-sub h5 {
  font-size: 22px;
  font-weight: 600;
}

.crt-sub h6 {
  font-size: 23px;
  color: #ce364c;
  font-weight: 500;
}

/* .cart__text .button {
  padding: 10px 15px;
} */
.lightbox {
  position: fixed;
  background: var(--black-color);
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 250ms ease-in-out, width 0ms ease-in-out 250ms;
}

.cart-info {
  flex: 1 1 auto;
  padding-right: 20px;
}

.product_list_widget>li img {
  float: left;
  margin-right: 15px;
  min-width: 65px;
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
}

a.checkout-btn {
  padding: 6px;
  height: 40px;
  line-height: 28px;
  /* width: 35%; */
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  color: #333 !important;
  background: #f7f7f7;
  border-radius: 5px;
}

.sideicon ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.size {
  margin-bottom: 0 !important;
}

.size {
  margin-bottom: 0 !important;
  font-size: 14px;
  line-height: 20px;
}

.view-custom-details {
  font-size: 12px !important;
  background-color: #ce364c !important;
  color: #fff !important;
  line-height: 22px;
  margin-top: 15px;
  border-radius: 50px;
  border: 0;
  padding: 1px 11px;
}

span.woocommerce-Price-amount.amount {
  font-size: 18px;
  font-weight: 500;
  color: #ce364c;
  display: block;
}

.cart__texton a {
  color: #000000;
  font-size: 14px;
}

.woocommerce-mini-cart-item.mini_cart_item {
  margin-bottom: 0;
  padding: 15px;
  transition: background-color .3s ease;
  position: relative;
  display: flex;
  align-items: flex-start;
}

body.open .lightbox {
  width: 100%;
  opacity: 0.8;
  transition: opacity 250ms ease-in-out, width 0ms ease-in-out;
}

.woocommerce-mini-cart .remove {
  position: absolute;
  top: 1px;
  right: 0;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--color-gray-800);
  text-align: center;
  font-size: 22px;
  line-height: 20px;
}

/* header section STyling END  */
.bat-category {
  background: url(../images/bat-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Hero Section */
.hero-section {
  background: url(../images/main-banner.jpg);
  min-height: 830px;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding-top: 60px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(76deg, black, transparent);
}

.flex-gap {
  gap: 70px;
}

.navbar-brand img {
  min-width: 100px;
  max-width: 100px;
}

.usersbtn {
  display: flex;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--white-color);
  border-radius: 100px;
}

.navbar-nav .nav-link {
  color: var(--white-color) !important;
  font-weight: 500;
  margin: 0 15px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-red) !important;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 500;
  font-family: 'Hudson-NY';
  margin-bottom: 20px;
  text-transform: uppercase;
}

.btn-custom {
  background-color: var(--white-color);
  color: #3E3E3E;
  border: 2px solid var(--primary-red);
  padding: 10px 10px 10px 25px;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #c82333;
  color: var(--white-color);
  transform: translateY(-2px);
}

.hero-bats {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 400px;
}

.custom-nav {
  display: flex;
  gap: 10px;
}

.custom-nav button {
  height: 50px;
  width: 50px;
  border-radius: 100px;
  border: navajowhite;
  background: var(--primary-red);
  color: #fff;
}

/* About Section */
.about-section {
  padding: 100px 0 0;
  background-color: var(--white-color);
}

.about-content h2 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--primary-red);
  font-weight: bold;
  font-size: 1.2rem;
  margin: 30px 0 20px 0;
  text-transform: uppercase;
}

/* Trending Bats Section */
.trending-section {
  padding: 100px 0;
  /* background-color: var(--light-gray); */
}

.bat-category {
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: end;
  justify-content: center;
  color: var(--white-color);
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trophy-bats h3,
.youth-bats h3 {
  font-size: 2.1rem !important;
}

.bat-category:hover {
  transform: translateY(-10px);
  color: var(--white-color);
}

.training-bats {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c82333 100%);
}

.trophy-bats {
  background: url(../images/bat-banner-02.png) !important;
}

.youth-bats {
  background: url(../images/bat-banner-03.png);
}

.setbg {
  position: relative;
  border-radius: 0px 20px 20px 0px;
}

.setbg:before {
  content: "";
  background: #f8f9fa;
  height: 100%;
  width: 80%;
  left: -80%;
  display: flex;
  position: absolute;
  z-index: 0;
  top: 0;
  border-radius: 20px 0px 0px 20px;
}

.bat-category h3 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

/* Why Diamond Grain Section */
.why-section {
  padding: 100px 0 0;
  /* background: linear-gradient(135deg, var(--primary-red) 0%, #c82333 100%); */
  color: var(--white-color);
  position: relative;
}

.setheight {
  padding: 85px 0 !important;
  border-radius: 10px;
}

.why-content {
  background: var(--white-color);
  color: #333;
  padding: 20px;
  border-radius: 20px;
  margin-right: -70px;
  z-index: 99;
  position: relative;
  right: -70px;
}

.why-content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-family: 'Hudson-NY';
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  padding-left: 11px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  background-image: url(../images/checked.png);
  background-repeat: no-repeat;
  width: 18px;
  height: 19px;
  top: 7px;
  left: -11px;
}

/* Best Seller Section */
.bestseller-section {
  padding: 100px 0;
  background-color: var(--white-color);
}

.section-title {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0px;
  color: #333;
}

.product-card {
  background: var(--white-color);
  border-radius: 15px;
  /* padding: 30px; */
  text-align: start;
  transition: transform 0.3s ease;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

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

.product-image {
  width: 100%;
  height: 250px;
  background-color: #ececec;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image>img {
  height: 100%;
  object-fit: fill;
  max-width: 100%;
  width: auto !important;
}

.product-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-category {
  color: #999;
  margin-bottom: 5px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-red);
}

.width-cs {
  max-width: 800px;
  padding: 30px 100px 30px 30px;
  text-align: start !important;
  border-radius: 10px 0px 0px 0px;
}

section.why-chose-sec {
  max-height: 700px;
  overflow: hidden;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  /* background-color: var(--light-gray); */
}

.owl-carousel .owl-stage-outer {
  padding: 10px !important;
}

.testimonial-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

.testimonial-card.featured {
  background: var(--primary-red);
  color: var(--white-color);
}

.stars {
  color: #ffc107;
  margin-bottom: 20px;
}

.customer-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  background-color: #ddd;
}

.customer-name {
  font-weight: bold;
  text-transform: uppercase;
}

.customer-title {
  color: var(--primary-red);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.testimonial-card.featured .customer-title {
  color: #ffcccb;
}

.customer-info .customer-avatar {
  max-width: 60px;
  max-height: 60px;
  min-width: 60px;
  min-height: 60px;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--white-color);
  padding: 80px 0 20px 0;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 30px;
}

.footer h5 {
  color: var(--white-color);
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}

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

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--primary-red);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-red);
  color: var(--white-color);
}

.footer-bottom {
  /* border-top: 1px solid #333; */
  /* margin-top: 50px; */
  /* padding-top: 30px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-icons img {
  height: 50px;
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-bats {
    display: none;
  }

  .why-content {
    margin-right: 0;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

/* INNER PAGES START */
.pd-b {
  padding-bottom: 100px;
}

.pd-t {
  padding-top: 100px;
}

.snd-hed {
  font-size: 70px;
  line-height: 72px;
  font-weight: 400;
  color: #100f0e;
}

.para {
  font-size: 14px;
  line-height: 25px;
  color: #151414;
}

.inner-banner {
  background-color: #0a0a0a;
  background-size: cover;
  height: 400px;
  padding-top: 210px;
}

.inr-ban-hed h2 {
  font-size: 70px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 2.1px;
}

.wd-shop-tools li a {
  color: #000;
}

a.per-page-variation {
  display: inline-block;
  padding: 0 7px;
  color: #777 !important;
  vertical-align: middle;
  position: relative;
  /* font-weight: 600; */
}

.shop-view {
  font-size: 25px;
  color: #777 !important;
}

.wd-breadcrumbs .breadcrumb-item.active {
  color: #000000;
}

.per-page-variation.current-variation,
.shop-view.current-variation.per-row-3 {
  color: #000000 !important;
}

.per-page-variation::after {
  content: "/";
  position: absolute;
  top: 0;
  right: -4px;
}

.per-page-title {
  display: inline-block;
  color: var(--black-color);
  font-weight: 600;
  position: relative;
}

select.orderby {
  padding-top: 3px;
  height: auto;
  border-top-style: none;
  border-right-style: none;
  border-left-style: none;
  border-radius: 0;
  background-color: unset;
  background-position: right 0 top 50%;
  font-weight: 600;
  font-size: inherit;
  line-height: 1.2;
  padding-inline-start: 2px;
  padding-inline-end: 20px;
  border-color: #cbcbcb !important;
  border-bottom: 2px solid;
}

.hid-cont li a {
  color: #333;
}

.hid-cont li {
  background-color: #fff;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
  list-style-type: none;
}

.hid-cont {
  opacity: 0;
  transition: all 0.35s;
  position: absolute;
  top: 10px;
  right: -58px;
}

.product-card:hover .hid-cont {
  opacity: 1;
  right: 8px;
}

.product-image a {
  display: inline-block;
}

.product-image {
  overflow: hidden;
  position: relative;
}

.shp-imm {
  width: 100%;
  height: 400px;
}

.inner-fr h2 {
  margin-bottom: 20px;
  font-size: 50px;
  line-height: 50px;
}

.fr-all {
  background: #fff;
  width: 60% !important;
  text-align: center;
  margin: 30px auto;
  box-shadow: 0px 0px 10px;
  padding: 60px 40px 50px 40px;
  border-radius: 10px;
}

.inner-fr input,
select,
textarea {
  width: 100%;
  margin: 0px 0 17px;
  padding: 0px 20px;
  height: 56px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px !important;
}

.inner-fr textarea {
  height: 180px;
  padding-top: 10px;
}

.lgo-res input {
  background-color: #ce364c;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  padding: 18px 60px;
  border-radius: 50px;
  border: transparent;
  text-transform: uppercase;
  width: 29%;
}

.hed-botofcan input {
  text-align: center;
  font-weight: 600;
  font-size: 48px;
  border: none;
}

.hed-botofcan {
  width: 100%;
  border-bottom: 1px solid #0000001b;
}

/* INNER PAGES END */
/* Cart */
.total-section li {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.total-section li {
  font-size: 21px;
  padding-bottom: 10px;
  color: var(--black-color) 000ba;
  font-weight: 500;
  font-family: 'Montserrat';
  line-height: normal;
}

.total-section ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.total-section h3 {
  text-transform: uppercase;
  font-size: 22px;
  padding-inline-start: 6px;
  color: #030303;
}

.total-section a {
  font-size: 14px !important;
  background-color: #ce364c;
  color: #fff !important;
  height: 40px;
  line-height: 22px;
  margin-top: 15px;
  border-radius: 50px;
}

section.add-to-cart {
  padding: 3% 0;
}

.counter {
  width: 100px;
  display: flex;
  align-items: center;
  border: 2px solid #e5e5e5;
  justify-content: center;
  border-radius: 2px;
}

.counter input {
  width: 40px;
  border: 0;
  line-height: 30px;
  font-size: 15px;
  text-align: center;
  height: 38px;
  background: transparent;
  color: #7c7c7c;
  appearance: none;
  border-left: 2px solid #e5e5e5;
  border-right: 2px solid #e5e5e5;
  outline: 0;
  padding: 0;
  padding-left: 5px;
  border-radius: 0;
}

.space span {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  font-family: "cereM";
  line-height: 30px;
  padding: 0;
}

.add-to-cart a {
  font-size: 20px;
  display: block;
  text-align: center;
  padding-top: 9px;
  color: #a3a3a3;
  font-weight: 500;
  text-decoration: none;
}

.tb-last {
  color: #ce364c !important;
  font-weight: 600 !important;
}

.add-to-cart h4 {
  font-size: 15px;
  font-weight: 500;
  color: #7c7c7c;
  text-align: center;
}

.add-to-cart .table>tbody>tr>td,
.add-to-cart .table>tbody>tr>th,
.add-to-cart .table>tfoot>tr>td,
.add-to-cart .table>tfoot>tr>th,
.add-to-cart .table>thead>tr>td,
.add-to-cart .table>thead>tr>th {
  vertical-align: middle;
}

.total-section {
  border: none;
  padding: 30px 20px;
  border: 1px solid #00000013;
  border-radius: 10px;
}

.total-section ul {
  list-style: none;
  margin-bottom: 0;
}

.total-section li {
  font-size: 15px;
  padding-bottom: 11px;
  color: #030303;
  font-weight: 500;
  line-height: normal;
}

li.color-change {
  color: #000;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 26.96px;
  padding-bottom: 0;
  border: solid 1px;
  border-color: #00000030 transparent transparent transparent;
  padding-top: 20px;
  text-align: center;
}

.total-section li.sub-total {
  display: flex;
  align-items: center;
  color: #030303;
}

.sub-total {
  border-bottom: 1px solid #e2e2e2;
}

.total-section li.color-change span {
  font-weight: 700;
  font-size: 20.96px;
  color: #000;
}

.ship-estimate {
  padding: 20px 40px;
  border: 1px solid #dddddd;
  margin-top: 25px;
}

.ship-estimate li {
  color: #000;
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 500;
}

.ship-estimate ul {
  margin-top: 20px;
  margin-bottom: 25px;
  list-style: none;
}

.ship-estimate .grey-style {
  color: #737373;
  font-size: 22px;
  font-weight: 500;
}

.proceed a {
  color: #000;
  text-align: center;
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 500;
  padding: 9px 0;
}

.crt-inp button {
  background: #ce364c;
  border: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  height: 42px;
  width: 29%;
}

.crt-inp input {
  width: 60%;
  height: 42px;
  padding: 0 8px;
  border: 2px solid #0000001a;
}

.proceed .checkout-btn {
  padding: 6px;
  height: 40px;
  line-height: 28px;
  display: inline-block;
  width: 35%;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  background: #f7f7f7;
  border-radius: 5px;
}

.no-space {
  text-wrap: wrap;
}

.proceed .save-btn {
  padding: 15px;
  width: 100%;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  background: #000000;
  border-radius: 40px;
}

.bnr-hed {
  max-width: 77%;
}

.or-amazon {
  margin-top: 50px;
  position: relative;
  border: 2px solid #cecece;
  padding: 30px 50px;
  border-radius: 5px;
  background: #fff;
}

.or-amazon p {
  font-size: 17px;
  position: absolute;
  background: #f3f3f3;
  top: -18px;
  left: 85px;
  padding: 3px 20px;
  color: #333333;
  display: block;
  text-transform: uppercase;
  border: 2px solid #cecece;
  font-family: "cereR";
}

.or-amazon a {
  text-decoration: none;
  text-align: center;
}

.product-img {
  display: inline-block;
  width: 100%;
  padding: 10px 5px;
  border-radius: 10px;
}

.product-img img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #eeeeee;
  height: 100px;
  object-fit: contain;
  padding: 10px 0;
}

.table> :not(:last-child)> :last-child>* {
  border-bottom-color: currentColor;
  font-size: 16px;
  font-weight: 500;
  color: #030303;
  border-color: #00000013;
  padding: 20px 23px;
  text-transform: uppercase;
}

table.table tr th:nth-child(5) {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.table-space h3 {
  font-weight: 500;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 30px;
  color: #030303;
  text-transform: capitalize;
  margin: 0px;
}

.space .row {
  align-items: center;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: #00000013;
  border-style: solid;
  border-width: 0;
}

th.qty {
  text-align: center;
}

a.remove {
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  color: #333;
  border: 0;
  border-radius: 50px;
}

.table-space h6 {
  font-weight: 500;
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 30px;
  color: #cbcbcb;
}

.space span {
  color: #7c7c7c;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.total-section ul {
  padding: 0;
}

table.table tr th:nth-child(1) {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.counter button {
  text-decoration: none;
}

.number-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-bn ol li a {
  color: #333;
  font-size: 14px;
}

.abt-bred .active {
  font-weight: 700;
}

.chg-clr {
  color: #ce364c;
  font-size: 19px;
  font-weight: 600;
}

/* Cart */
/* CHECKOUT PAGE START */
.billing_form {
  border: 1px solid #8080806e;
  padding: 40px 25px;
  border-radius: 0;
}

.billing_form label {
  font-size: 14px;
  color: #7c7c7c;
  font-weight: 600;
}

.billing_form input {
  width: 100%;
  height: 50px;
  border: 1px solid #c4c4c4;
  margin-bottom: 20px;
  padding-left: 15px;
  background: transparent;
  border-radius: 0;
}

.cart_sidebar {
  padding: 40px 25px;
  border: 1px solid #c4c4c4;
  border-radius: 0;
}

.cart_sidebar h3 {
  font-size: 24px;
  color: #000;
  margin-top: 0px;
  margin-bottom: 20px;
  text-transform: capitalize;
  line-height: normal;
  font-weight: 300;
}

.cart_sidebar .h-sub {
  font-weight: 500;
  color: #000000;
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
}

.cart_sidebar .cart_lst li:not(:last-child) {
  margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
  font-size: 14px;
  color: #7c7c7c;
}

.cart_sidebar .cart_lst li:last-child {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.cart_sidebar .cart_lst {
  margin-top: 20px;
  margin-bottom: 20px;
}

.cart_sidebar h4 {
  font-size: 25px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: normal;
  padding-top: 0;
}

.cart_sidebar ul li label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #7c7c7c;
}

.cart_sidebar .h-ship {
  font-weight: 600;
  color: #000000;
  font-size: 20px;
  padding-bottom: 15px !important;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 42px;
  line-height: 0;
  padding-top: 08px;
}

.checkout_btn {
  padding: 12px 50px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff !important;
  font-size: 16px;
  border: none;
  font-weight: 500;
  border: 2px solid transparent;
  background-color: #ce364c;
  text-transform: uppercase;
  border-radius: 10px;
}

.cart_sidebar ul li {
  list-style-type: none;
}

.cart_sidebar h5 span {
  float: right;
}

.cart_sidebar .cart_lst li span {
  float: right;
}

span.chk-price {
  color: #000;
}

.cart_sidebar ul {
  padding: 0;
}

.chk-price {
  color: #ce364c !important;
}

/* CHECKOUT PAGE END */
/* PRODUCT DETAILS START */
.deltl-al {
  border-top: 1px solid #dddddd;
  padding-top: 15px;
  margin-top: 30px;
}

.pd-des a {
  color: #000;
}

.pd-des li {
  list-style-type: none;
}

.pd-des a strong {
  padding-right: 7px;
}

.ful-im {
  top: 10px;
  right: 20px;
  background-color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #000000;
  border-radius: 50%;
  font-size: 18px;
}

.counter-det {
  width: 100px;
  border: 3px solid #e5e5e5;
  border-radius: 2px;
}

.counter-det input {
  border: transparent;
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  background: transparent;
  border-radius: 0;
}

.counter-det button {
  color: #000;
  text-decoration: none;
}

.deltl-al label {
  font-weight: 500;
  font-family: 'Hudson-NY';
  font-size: 21px;
}

.st-count a {
  background-color: #ce364c;
  color: #fff;
  border-radius: 0px;
  text-align: center;
  font-size: 13px;
  padding: 12px 25px;
  text-transform: uppercase;
  font-weight: 600;
}

.prd-sli img {
  width: 100%;
}

.radio-group {
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 50px;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  transition: all 0.3s ease;
}

.radio-item input[type="radio"]:checked+label {
  background: #ce364c;
  color: white;
  border-color: #ce364c;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.radio-item input[type="radio"]:hover+label {
  border-color: #ce364c;
}

@media (max-width: 500px) {
  .radio-group {
    gap: 10px;
  }

  .radio-item label {
    width: 80px;
    height: 45px;
    font-size: 16px;
  }
}

/* PRODUCT DETAILS END */
.select2-container .select2-selection--single {
    height: 50px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 47px !important;
}
.size-box {
  display: inline-block;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 8px 15px;
  cursor: pointer;
  margin: 5px;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

.size-box label {
  cursor: pointer;
  margin: 0;
}

.size-box.active {
  border-color: #007bff;
  background: #007bff;
  color: #fff;
}


.dropdown>.dropdown-menu,
.dropdown.open>.dropdown-menu {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.2s;
}

.dropdown>.dropdown-menu,
.dropdown.open>.dropdown-menu li a {
  color: #000;
}

.dropdown:hover>.dropdown-menu,
.dropdown.open:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
}

li.nav-item.dropdown ul.dropdown-menu li a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 6px;
}

li.nav-item.dropdown ul.dropdown-menu li {
  border-bottom: 1px solid #c82333;
}

li.nav-item.dropdown ul.dropdown-menu li:last-child {
  border-bottom: none;
}

/* sub dropdown menu */
/* Base nav */
/* Positioning submenus */


.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
  display: none;
  position: absolute;
}

/* Show submenu on hover (desktop) */
.dropdown-submenu:hover>.dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: all ease 0.2s;
}

.dropdown-submenu {
  position: relative;
}

#search-bar {
  width: 100%;
  padding: 10px 15px;
  border-radius: 30px;
  border: 1px solid #000;
  outline: none;
  font-size: 16px;
}

form.top_form.search-container {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 60px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  z-index: 1000;
  max-height: 380px;
  overflow-y: auto;
}

.offcanvas-top {
  height: 50vh !important;
}

.nav_btn {
  position: absolute;
  right: 6px;
  top: 4px;
  background-image: linear-gradient(to bottom, #e85b5b, #d75152, #c54849, #b53e40, #a43537);
  border: none;
  padding: 0 15px;
  height: 44px;
  width: 44px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
}

.menu-column {
  flex: 1;
  text-align: center;
  padding: 10px;
  max-width: 150px;
}

.menu-column img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}

section.shop-sec.pd-b .page-item.active .page-link {
  background-color: #cc2a4d;
  border: 1px solid #000;
  color: #fff;
}

section.shop-sec.pd-b .page-link {
  color: #cc2a4d;
}

.selected-shipping-info {
  background: linear-gradient(135deg, #fff 0%, #f0f2ff 100%);
  border: 1px solid #b7b3b4;
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
  animation: slideInUp 0.5s ease-out;
}

.shipping-breakdown {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.breakdown-item.shipping-item {
  background: #e8f4ff;
  margin: 5px -15px;
  padding: 10px 15px;
  border-radius: 6px;
  border-left: 4px solid #007bff;
}

.breakdown-item.total-item {
  font-size: 16px;
  font-weight: bold;
  color: #2c5aa0;
  padding-top: 12px;
  border-top: 2px dashed #dee2e6;
}

.breakdown-item .label {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.breakdown-item .value {
  font-weight: 600;
}

.breakdown-item.shipping-item .label {
  color: #007bff;
  font-weight: 600;
}

.breakdown-item.shipping-item .value {
  color: #28a745;
  font-weight: 700;
}

.breakdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #dee2e6 50%, transparent 100%);
  margin: 10px 0;
}

.shipping-description {
  margin-top: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  border-left: 3px solid #17a2b8;
}

.shipping-description small {
  font-size: 12px;
  line-height: 1.4;
}

/* Animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Offcanvas backdrop fix */
.offcanvas-backdrop {
  z-index: 1040;
}

.offcanvas {
  z-index: 1050;
}

/* Cart sidebar adjustments */
.cart_sidebar {
  position: relative;
}

.cart_sidebar .selected-shipping-info {
  margin: 20px 0;
}

/* offcanvas css */
/* Force remove backdrop styles */
.offcanvas-backdrop {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Ensure body doesn't get locked */
body.offcanvas-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/* Prevent body scrolling lock */
body {
  /* overflow: auto !important; */
  padding-right: 0 !important;
}

/* Additional safety styles */
.modal-backdrop {
  display: none !important;
}

[class*="backdrop"] {
  display: none !important;
}
.answers {
    grid-template-columns: repeat(5, min(60px, 20%));
    row-gap: 24px;
}



@media (max-width: 1500px) {
  .fixedBorder:before {
    width: 100%;
    left: -108%;
  }
}

@media (max-width: 1280px) {

  .hero-content h1,
  .inr-ban-hed h2 {
    font-size: 50px;
  }

  .w-50.fixedStart {
    width: 80% !important;
  }


}

@media (max-width: 1200px) {
  .flex-gap {
    gap: 30px;
  }

  .hero-section {
    min-height: unset;
    padding: 160px 0px;
  }

  .why-content {
    right: -20px;
    width: calc(100% - 40px);
  }

  .lgo-res input {
    padding: 16px 16px;
    min-width: 140px;
  }

  canvas.upper-canvas {
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .footer-bottom {
    flex-direction: column-reverse;
  }

  .navbar-nav .dropdown-menu {
    position: absolute !important;
  }

  .flex-gap {
    margin-bottom: 25px !important;
  }

  div#navbarNav {
    padding: 20px;
  }


}

@media (max-width: 767px) {

  .why-content h2,
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  canvas.upper-canvas {
    width: 100% !important;
  }

 .side-bar {
    overflow-y: scroll;
    height: 260px;
    width: 100% !important;
    float: none;
    position: absolute;
    top: 0px;
    right: 0;
}

  .side-bar::-webkit-scrollbar {
    width: 2px;
  }
  
  .side-bar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  
  .side-bar::-webkit-scrollbar-thumb {
    background-color: #ce364c;
    outline: 1px solid #ce364c;
  }

  body,
  p {
    font-size: 14px;
  }

  .btn-custom {
    padding: 6px 7px 7px 15px;
    font-size: 14px;
  }

  .about-section {
    padding-top: 0;
  }

  .hero-content h1,
  .inr-ban-hed h2 {
    font-size: 40px;
  }

  .fr-all {
    width: 100% !important;
  }

  .lgo-res input {
    padding: 16px 16px;
    width: 29%;
    min-width: 140px;
  }

  .product-detail {
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    margin: 0 auto;
    /* display: table; */
}
.iconlist ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;

  }
  /* .footer {text-align: center;}
  .social-icons {justify-content: center;} */
  .authentication-wrapper.authentication-basic {overflow-x: hidden;width: 100%;}
    .w-50.fixedStart {width: 100% !important;flex-wrap: wrap;padding-left: 10px !important;gap: 10px;bottom: 0 !important;}
  .fixedBorder:before {display: none;}
  .w-50.fixedStart>div>a {max-width: 100px;}
  .fixedBorder {display: none;}
  #batCanvas {transform: scale(0.9);}
  section.custom-senior-display {overflow: hidden;}
  canvas#batCanva, .canvas-container {min-width: 380% !important;width: 100% !important;}
.bat-canvas {width: 100% !important;left: 132%;top: -30px;}
  #batCanvas {max-width: 30%;object-fit: contain;}
.answers {grid-template-columns: repeat(4, min(60px, 20%));}

}