* {
  animation: none !important;
  transition: none !important;
}

body {

  --heading-font: "Univers Next", sans-serif;
  --heading-font-weight: 400;
  --heading-color: #111;
  --heading-line-height: 1.24;

  --swiper-theme-color: #8C907E;

  /* bootstrap */
  --bs-body-font-family: "Univers Next", sans-serif;
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #8f8f8f;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #8C907E;
  --bs-secondary: #6c757d;
  --bs-black: #111;
  --bs-light: #F1F1F0;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 140, 144, 126;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: #111;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #111;
  --bs-link-hover-color-rgb: 17, 17, 17;
}

body {
  letter-spacing: 0.03rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}

h1.light,
.h1,
h2.light,
.h2,
h3.light,
.h3,
h4.light,
.h4,
h5.light,
.h5,
h6.light,
.h6 {
  color: var(--light-color);
}

h1,
h2,
h3 {
  margin: 25px 0;
}

h5,
h6 {
  letter-spacing: 1px;
}

h1,
.h1 {
  font-size: 4.5rem;
}

h2,
.h2 {
  font-size: 3.6rem;
}

h3,
.h3 {
  font-size: 2.8rem;
}

h4,
.h4 {
  font-size: 1.8rem;
}

h5,
.h5 {
  font-size: 1.4rem;
}

h6,
.h6 {
  font-size: 1rem;
}

a {
  text-decoration: none;
}

/* container fluid */
.container-fluid {
  /* width: 98%; */
  max-width: 1800px;
}

/* Dropdown */
.dropdown-menu {
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
  background-color: #0060aa;
}

.dropdown-item {
  --bs-dropdown-item-padding-y: 0.30rem;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-link-color: white;
  --bs-dropdown-item-border-radius: 0;
}

.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
  color: white;
  border-bottom: 2px solid white;
  background-color: #0060aa;

}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #8C907E;
  --bs-btn-border-color: #8C907E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5e624e;
  --bs-btn-hover-border-color: #5e624e;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #5e624e;
  --bs-btn-active-border-color: #5e624e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #8C907E;
  --bs-btn-disabled-border-color: #8C907E;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-black);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
}

/* breadcrumb */
.breadcrumb {
  --bs-breadcrumb-item-padding-x: 1em;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* accordion */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0.1rem;
  --bs-accordion-btn-color: var(--bs-dark);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-border-color: var(--bs-dark);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0.1rem;
  --bs-accordion-active-color: transparent;
  --bs-accordion-active-bg: transparent;
}

/* form control */
.form-control:focus {
  border-color: #ababab;
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, .25);
}

/* dark theme */
[data-bs-theme=dark] body {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-link-color: #fff;
  --bs-link-hover-color: #fff;
  --bs-link-color-rgb: 255, 255, 255;
  --bs-link-hover-color-rgb: 255, 255, 255;
  --bs-body-color: #d1d1d1;
  --bs-body-bg: #111;
  --bs-body-bg-rgb: 17, 17, 41;
}

[data-bs-theme=dark] .dropdown-item {
  --bs-dropdown-link-color: var(--bs-light);
  --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme=dark] .bg-white,
[data-bs-theme=dark] .bg-light {
  --bs-bg-opacity: 0.1;
}

/* end of Bootstrap Color Theme */

/* preloader */
.preloader {
  position: fixed;
  z-index: 1100;
  background: white;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.preloader.loaded {
  height: 0;
}

/* Optional: Style the loading image */
.preloader img {
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* 
.preloader-progress {
  width: 80%;
  height: 8px;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.preloader-bar {
  width: 0;
  height: 100%;
  background-color: #007bff;
  transition: width 0.3s ease-in-out;
} */
.searchBoxButton {
  font-size: 18px;
}

/* navbar */
.navbar.fixed-top {
  transition: background-color 0.6s ease-out;
}

.owl-carousel .owl-stage {
  transition: all 0.6s ease-in-out !important;
}

.owl-carousel .owl-item {
  transition: transform 0.8s ease-in-out;
}

/*--- Image hover Effects
-----------------------------------------------*/
.image-zoom-effect {
  display: flex;
  flex-wrap: wrap;
}

.image-zoom-effect .image-holder {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-effect:hover .image-holder {
  transform: scale(1);
}

.image-zoom-effect img {
  transform: scale(1);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.image-zoom-effect:hover img {
  transform: scale(1.1);
}

/* Link Effect
 - Place anywhere you want your link to animate
 - Add data-after="Any text" to the link within the class
 - Use span within the anchor tag for the effect to work
------------------------------------------------------------- */
.link-effect a {
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: transform 0.5s;
  display: block;
}

.link-effect a::after {
  content: attr(data-after);
  display: inline-block;
  transform: translateY(100%);
  position: absolute;
  left: 0;
  font-size: 1rem;
  text-align: inherit;
  text-transform: uppercase;
  transition: inherit;
}

.link-effect a>span {
  display: inline-block;
  transform: translateY(0%);
  transition: inherit;
}

.link-effect:hover a>span {
  transform: translateY(-100%);
}

.link-effect:hover a::after {
  transform: translateY(0%);
}


/* - Border Hover No Effects
------------------------------------------------------------- */
.border-animation .no-effect a:after {
  background: none;
}

/* - Border Hover Effects 2
------------------------------------------------------------- */
.border-animation-left .item-anchor {
  position: relative;
  margin-bottom: 20px;
}

.border-animation-left .item-anchor:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background-color: white;
  transition: all 0.5s ease;
}

.border-animation-left.light-border .item-anchor:after,
.border-animation-left .item-anchor:after {
  background: white;
}

.border-animation-left .item-anchor:hover:after,
.border-animation-left .item-anchor:focus:after {
  width: 100%;
}

/* product item */
.discountlabel {
  background-color: rgb(203, 58, 58);
  font-size: 13px;
  color: white;
  padding: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 5px;
  font-weight: bold;
  z-index: 10;

}

.product-item {
  /* width:310px!important; */
  width: 100%;
  min-height: 400px !important;
  height: auto;
}

.product-item .btn-wishlist {
  display: block;
  z-index: 111;
  position: absolute;
  top: 10px;
  padding: 6px 10px;
  color: var(--bs-black);
  background: var(--bs-white);
  right: 5px;
  opacity: 0;
  font-size: 17px;
  border-radius: 50%;
  transition: opacity 0.3s ease-in;
}

.product-item:hover .btn-wishlist {
  opacity: 1;
}

.product-item .btn-view {
  display: block;
  z-index: 111;
  position: absolute;
  top: 50px;
  padding: 10px;
  color: var(--bs-black);
  background: var(--bs-white);
  right: 5px;
  opacity: 0;
  font-size: 17px;
  border-radius: 50%;
  transition: opacity 0.3s ease-in;
}

.product-item:hover .btn-view {
  opacity: 1;
}

.product-item .btn-cart-image {
  display: block;
  z-index: 111;
  position: absolute;
  top: 95px;
  padding: 10px;
  color: var(--bs-black);
  background: var(--bs-white);
  right: 5px;
  opacity: 0;
  font-size: 17px;
  border-radius: 50%;
  transition: opacity 0.3s ease-in;
}

.product-item:hover .btn-cart-image {
  opacity: 1;
}


/* rotating text */
.text-rotate {
  animation: rotation 50s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* image zoom */
.image-zoom {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform .3s ease-out;
}

/* home page */

/* Header */
.logo {
  width: auto;
  height: 50px;
}

.navbar-collapse .navbar-nav .nav-link {
  color: white;
  font-size: 15px;
}

.user-icons div {
  padding-right: 0.8em;
  font-size: 1.2em;
  color: white;
}

.cart-count {
  font-size: 12px;
}

.nav-link:hover .dropdown-menu {
  display: block;
  background-color: #0060aa !important;

}

.navbar-nav li {
  font-size: 15px;
  font-weight: 400;
}

.top-line {
  border-bottom: 1px solid #0060aa;
  background-color: #f18142;
}

.top-line p {
  justify-content: end;
  font-size: 0.8em;
  padding-right: 1em;
  color: white;
  font-weight: bold;

}

.top-line a {
  color: white;
  text-decoration: underline;
}

.bottom-line {
  background-color: rgb(247, 242, 242);
  border-bottom: 1px solid #0060aa;
  border-top: 1px solid #0060aa;
}

.btn-search {
  background-color: #0060aa !important;
  color: white !important;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.cart-count {
  padding: 0px !important;
  color: black !important;
  font-size: 16px;
  font-weight: 400;
}

.wishlist-count {
  padding: 0px !important;
  color: #0060aa !important;
  font-size: 16px;
  font-weight: 400;
}

.nav-account {
  display: none;
}

.account {
  display: block;
}

.nav-link:hover .dropdown-menu {
  display: block;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.nav-icon {
  display: none;
}

/* Header end */
.homeheadingh1 {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.winterimage {
  width: 100%;
  height: 620px;
  object-fit: contain;
}

.topimage {
  width: 100%;
  height: 310px;
  object-fit: contain;
}

.homebtnView {
  font-size: 16px;
  color: #0060aa;
  background-color: #f18142;
  border-radius: 0px;
  padding: 15px 15px;
  width: 100% !important;
}

.product-image {
  width: 100% !important;
  height: 350px !important;
  object-fit: contain;
  border-radius: 5px;
}

.banner {
  width: 100%;
  height: 500px;
  object-fit: auto;
}

.banner-two {
  width: 100%;
  height: 500px;
  object-fit: auto;
}

.post-grid-image {
  object-fit: cover;
  max-height: 230px;
  border-radius: 6px;
}

.product-title {
  font-size: 14px !important;
}

.product-content {
  font-size: 15px !important;
}

.fa-star {
  color: #f18142;
  font-size: 12px;
}

.f-1 {
  font-size: 17px;
  font-weight: 400;
}

.custom-popover {
  --bs-popover-max-width: 200px !important;
  --bs-popover-font-size: 12px !important;
  --bs-popover-body-padding-x: .5rem !important;
  --bs-popover-body-padding-y: .5rem !important;

}

.modal-body {
  overflow-x: hidden;
}

.modal-heading {
  color: #f18142;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.modal-subheading {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.btn-sale {
  background-color: rgb(203, 58, 58);
  font-size: 12px;
  color: white;
  font-weight: 500;
  padding: 3px 15px;
  border-radius: 20px;
}

.modal-p {
  font-size: 15px;
  font-family: var(--heading-font);

}

.carousel-item {
  background-color: white !important;
  background-image: url('../images/white-bg.png') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.modal-image {
  width: 100% !important;
  height: 600px !important;
  object-fit: contain;
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  background-color: transparent !important;
}

.btn-close {
  font-size: 14px !important;
  color: black !important;
}

.btn-close:hover {
  font-size: 14px !important;
  color: black;
}

.ch-1 {
  font-size: 17px;
  color: black;
  font-weight: 300;
}

.gap-2 {
  gap: 0.75rem !important;
}

.flex-wrap,
.avatar-group {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.choiceIssue {
  font-size: 13px;
}

.btn-addcart {
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  color: white !important;
  background-color: #0060aa !important;
  border: 1px solid white;
  border-radius: 4px;
}

.btn-addcart:hover {
  background-color: #f18142 !important;
  color: #0060aa !important;
  border: 1px solid #f18142 !important;
  box-shadow: 0px 0px 6px #0060aa !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.input-group {
  clear: both;
  position: relative;

}

.input-group input[type='button'] {
  background-color: white;
  color: black;
  font-size: 18px;
  font-weight: 500;
  border: 0px;
  width: auto;
  transition: all 300ms ease;
  box-shadow: none;
}

.input-group .button-minus,
.input-group .button-plus {
  font-weight: bold;
  height: auto;
  padding: 0;
  font-size: 18px;
  position: relative;
  border-radius: 0px;

}

.input-group .quantity-field {
  position: relative;
  height: auto;
  text-align: center;
  width: 50px;
  display: inline-block;
  font-size: 14px;
  color: black !important;
  resize: vertical;
  border: 0px;
  box-shadow: none;
}

.btn-light {
  font-size: 14px;
  padding: 6px 14px;
  color: white;
  background-color: #0060aa;
  border-radius: 5px;
}

.btn-light.active,
.btn-light:hover {
  color: #0060aa !important;
  border-radius: 5px;
  background-color: #f18142 !important;
  box-shadow: 0px 0px 5px #0060aa;
}

.active-light {
  color: #0060aa !important;
  background-color: #f18142 !important;
}

.btn-cart-note {
  font-size: 17px;
  background-color: #f18142;
  color: #0060aa;
  width: 100%;
  border: 0px;

}

.btn-s {
  padding-left: 18px !important;
  padding-right: 18px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.btn-nav-close {
  border: 2px solid white;
  font-size: 16px;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 600;
  background-color: #0060aa;
  color: white;

}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar:horizontal {
  height: 4px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: #f18142;
}

::-webkit-scrollbar-thumb:hover {
  background: #f18142;
}

.fa-square-facebook {
  color: rgb(69, 123, 223);
}

.fa-square-instagram {
  color: rgba(235, 54, 96, 0.997);
}

.fa-x-twitter {
  color: rgb(34, 34, 34);
}

.fa-heart {
  color: rgb(255, 52, 52);
}

.fa-pinterest {
  color: rgb(255, 52, 52);
}

.fhead {
  font-size: 34px !important;
  color: white !important;
  font-weight: bold !important;
}

.fuli {
  font-size: 18px !important;
  color: white !important;
  font-weight: bold !important;
}

.fli {
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: white;

}

.contact-custom-popover {
  --bs-popover-max-width: 200px !important;
  --bs-popover-font-size: 12px !important;
  --bs-popover-border-color: var(--bd-violet-bg);
  --bs-popover-header-bg: #0060aa;
  --bs-popover-header-color: var(--bs-white);
  --bs-popover-body-padding-x: .5rem !important;
  --bs-popover-body-padding-y: .5rem !important;

}

input,
textarea {
  color: black !important;
}

a {
  text-decoration: none !important;
}

.contact-icon {
  background-color: #f18142;
  color: #0060aa;
  font-size: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 13px;
  border: 1px solid #0060aa;
  border-radius: 50%;

}

.contact-text {
  font-size: 16px;
  color: #0060aa;
}

.toast {
  z-index: 9999 !important;
  /* position: relative; */
  position: fixed;
  bottom: 0px;
  right: 10px;
}

/* About Page Banner */
.about-banner {
  background-image: url("../images/newsletter-image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  object-fit: contain;
}

.about-banner h1 {
  font-size: 42px;
}

.about-banner p {
  font-size: 16px;
}

.about-heading {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  color: #f18142;
}

.about-text {
  font-size: 17px;
  color: #0060aa;
  text-align: center;
}

.about-subheading {
  font-size: 42px;
  font-weight: 500;
  text-align: left;
  color: #f18142;
}

.about-subtext {
  font-size: 17px;
  color: #0060aa;
  font-weight: 400;
  text-align: justify;
}

.about-image {
  width: 80%;
  height: 400px;
  border-radius: 5px;
  object-fit: cover;
}

#iname,
#iemail,
#iphone,
#iaddress,
#ipincode,
#icity,
#icountry,
#istate {
  font-size: 15px;
  font-weight: 500;
}

.t0 {
  font-size: 14px !important;
}

.bg-blue {
  background-color: #0060aa;
}

.carousel-caption h1 {
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 240px;
  position: relative;
  color: #f18142 !important;
  z-index: 1;
  font-style: italic;

}

.carousel-item {
  position: relative;

}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
  z-index: 1;
}

.carousel-item img {
  position: relative;
  z-index: 0;
}

.popupimage {
  width: 100%;
  height: 400px;
}

.popupModalBody {
  background-color: transparent;
}

#exampleModal .carousel-item::before {
  background: none !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: transparent !important;
  background-image: none !important;

}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '‹';
  font-size: 55px;
  color: black;
}

.carousel-control-next-icon::after {
  content: '›';
}

.headnavbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 2px; */
}

.headnavbar .nav-item {
  white-space: nowrap;
  /* padding: 3px 5px; */
}

.modal-fancybox {
  z-index: 10000 !important;
}

#owl-header .owl-nav {
  position: absolute;
  top: 30%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  /* Prevent blocking clicks */
}

#owl-header .owl-nav-left,
#owl-header .owl-nav-right {
  color: #f18142;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
}

#owl-header .owl-nav [class*=owl-] {
  padding: 0px 7px !important;
  background: #0060aa !important;
}

#owl-header .owl-nav-left {
  margin-left: 10px;
}

#owl-header .owl-nav-right {
  margin-right: 10px;
}


@media(min-width:1200px) {
  .homebtnView {
    font-size: 20px;
    color: #0060aa;
    background-color: #016e37;
    border-radius: 0px;
    padding: 15px 15px;
    width: 100% !important;
  }

  .btn-whatsapp {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 2;
    top: 500px;
    right: 95%;
    border-radius: 50%;
  }

  .btn-whatsapp:hover {
    box-shadow: 0 4px 8px #016e37;
  }
}

@media(max-width:1200px) {

  .btn-whatsapp {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 2;
    top: 500px;
    right: 92%;
    border-radius: 50%;
  }

  .btn-whatsapp:hover {
    box-shadow: 0 4px 8px #016e37;
  }
}

@media(max-width:1000px) {
  .about-image {
    width: 100%;
    height: 400px;
    border-radius: 3px;
    object-fit: cover;
  }
}

@media(max-width:900px) {

  .contact-icon {
    font-size: 18px;
    width: 60px;
    height: 50px;
    text-align: center;
    padding-top: 13px;
    border: 1px solid #0060aa;
    border-radius: 50%;

  }

}

@media (max-width:800px) {
  .winterimage {
    width: 100%;
    height: 500px;
    object-fit: contain;
  }

  .topimage {
    width: 100%;
    height: 240px;
    object-fit: contain;
  }
}

@media screen and (min-width: 768px) {

  .search-and-icons,
  .contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .search-and-icons {
    width: 70%;
  }

  .navbar form {
    flex: 1;
  }
}

@media(max-width:600px) {

  .logo {
    width: 100px;
    height: 50px;
  }

  .nav-account {
    display: block;
  }

  .account {
    display: none;
  }

  .nav-icon {
    display: block;
    color: white;
    float: right;
    font-size: 14px;
  }

  .dropdown-toggle::after {
    display: none !important;
  }

  .homeheadingh1 {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .winterimage {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .topimage {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .banner {
    width: 100%;
    height: 450px !important;
    object-fit: auto;
  }

  .banner-two {
    width: 100%;
    height: auto !important;
    object-fit: contain;
  }

  .product-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .product-title {
    font-size: 14px !important;
  }


  .contact-icon {
    font-size: 18px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 13px;
    border: 1px solid #0060aa;
    border-radius: 50%;

  }

  .toast {
    z-index: 9999 !important;
    position: fixed;
    font-size: 15px !important;
    bottom: 0px;
    right: 0px;

  }

  .about-image {
    width: 100%;
    height: 270px;
    border-radius: 3px;
    object-fit: cover;
    margin-top: 0px;
  }

  .btn-whatsapp {
    position: fixed;
    z-index: 2;
    top: 75%;
    right: 82%;
    border-radius: 50%;
  }

  .btn-whatsapp:hover {
    box-shadow: 0 4px 8px #016e37;
  }

}

.carousel-item a {
  position: relative;
  z-index: 2;
}

#owl-arrive .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

#owl-arrive .owl-nav button.owl-prev,
#owl-arrive .owl-nav button.owl-next {
  pointer-events: all;
  background: white;
  border-radius: 50%;
  width: 10px;
  height: 40px;
  border: none;
  color: #0060aa;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -35px;
  margin-right: -35px;
}

#owl-arrive .owl-nav button:hover {
  /* background-color:rgb(170, 172, 172); */
  color: rgb(170, 172, 172);
}

@media(max-width:600px) {

  #owl-arrive .owl-nav button.owl-prev,
  #owl-arrive .owl-nav button.owl-next {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.bg-green {
  background-color: #0060aa !important;
}

.bg-dark-green {
  background-color: #0060aa !important;
}

.text-green {
  color: #f18142;
}

.text-clay {
  color: white !important;
}

.border-green-top {
  border-top: 1px solid #0060aa !important;
}

.border-bottom-green {
  border-bottom: 1px solid #f18142 !important;
}

.accordion-button:not(.collapsed) {
  background-color: #f18142 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  font-size: 16px;
  color: #0060aa;
}

.accordion-header {
  border-radius: 5px !important;
  padding: 0px !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.accordion {
  border-radius: 2px;
}

.accordion-button {
  font-size: 16px;
  color: #0060aa;
  background-color: #0060aa !important;
  font-weight: 600;
  padding: 13px;
}

.accordion-body {
  font-size: 16px;
  color: #0060aa;
  font-weight: 500;
}

.faqHead {
  font-size: 28px;
  font-weight: 600;
  color: #f18142;
}

.product-detail-image {
  width: 100%;
  height: 450px;
  border-radius: 5px;
  object-fit: contain;

}

.indicator-box {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
  max-height: 450px;
  overflow-y: auto;
  overflow-x: hidden;
}

.indicator {
  border: 0px;
  padding: 0px;
  background-color: white;
}

.product-detail-image-mini {
  width: 110px;
  height: 70px;
  object-fit: contain;
  border-radius: 5px;
  opacity: 0.9;
  padding: 2px;
  border: 1px solid gray;
}

.product-detail-image-mini:active {
  width: 110px;
  height: 70px;
  border-radius: 5px;
  border: 2px solid black;
  opacity: 1;
}

.nav.nav-tabs .nav-link {
  width: 200px;
}

.nav.nav-tabs .nav-link.active {
  border-top: 2px solid #f18142;
}

@media(max-width:600px) {

  .nav.nav-tabs .nav-link {
    width: auto;
    font-size: 12px;
  }

  .nav.nav-tabs .nav-link.active {
    border-top: 4px solid #1d6f0d;
  }

  .indicator-box {
    max-width: 100%;
    padding: 10px 0px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }

  .product-detail-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .lian {
    text-decoration: none;
    color: white !important;
    font-size: 15px;
    font-weight: 300;
  }

}

.product-icon {
  font-size: 20px;
  padding: 1px 1px;
  border-radius: 4px;
}

#btn-cancel {
  border-radius: 2px;
  color: black;
  background-color: white;
}

#btn-cancel:focus {
  color: gray;
  background-color: white;
  font-weight: 600;
}

#btn-cancel:hover {
  color: gray;
  background-color: white;
  font-weight: 600;
}

#ratingForm label {
  font-size: 16px;
}

#ratingForm .form-control {
  border-radius: 2px;
}

#ratingForm .form-control:focus {
  box-shadow: none;
  border-color: black;
}

#issue {
  font-size: 15px;
}

.stars {
  display: flex;
  cursor: pointer;
}

.stars span {
  font-size: 2rem;
  color: #ccc;
  /* Default star color */
  transition: color 0.2s;
}

.stars span.hovered,
.stars span.selected {
  color: goldenrod;
  /* Highlighted star color */
}

.reviewStar {
  font-size: 16px;
}

.reviewIcon {
  font-size: 18px;
  padding: 5px;
}

.reviewText {
  font-size: 16px;
}

.reviewImage {
  width: 80px;
  height: 80px;
}

.reviewContainer {
  max-height: 500px;
  overflow-y: auto;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
  z-index: 1;
}

.carousel-item img {
  position: relative;
  z-index: 0;
}

.form-control:focus {
  box-shadow: none;
}

.checboxfont {
  font-size: 15px;
  color: black;
}

.price-box {
  font-size: 16px;
  color: black;
  align-items: center;
}

.range-box {
  border: 2px solid rgb(220, 218, 218);
  border-radius: 3px;
}

/* Chrome, Safari, Edge */
input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #1d6f0d;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #1d6f0d;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* For Chrome, Safari, Edge */
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: #1d6f0d;
  border-radius: 3px;
}

/* For Firefox */
input[type="range"]::-moz-range-track {
  height: 4px;
  background: #1d6f0d;
  border-radius: 3px;
}

.sizefont {
  font-size: 18px;
  color: black;
  align-items: center;
}

#sort {
  font-size: 13px;
}

ul {
  list-style-type: none;
}

.lian {
  text-decoration: none;
  color: #0060aa;
  font-size: 15px !important;
  font-weight: 300;
}

.lian:hover,
.lian:focus {
  border-bottom: 1px solid black;
  padding-bottom: 2px;
}

.tab-card-head {
  background-color: #f18142;
  color: white;
  font-weight: bold;
  font-size: 16px !important;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.tab-card-body {
  padding: 0px;
  border: 1px solid #0060aa;
}

.tab-dash {
  border-bottom: 1px groove #0060aa;
  width: 100%;
  border-radius: 0px !important;
  font-size: 13px !important;
  font-weight: bold;
  color: #f18142;
  background-color: white;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
}

.profile-info {
  border-bottom: 1px groove #0060aa;
  border-radius: 0px !important;
  font-size: 14px !important;
  color: black;
  background-color: white;
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
}

.summary-card {
  border-radius: 10px;
  background-color: white;
}

.summary-head {
  font-size: 21px;
  color: #f18142;
  font-weight: 500;
  border-bottom: 1px groove #f18142;
}

.summary-text {
  font-size: 15px;
  color: black;
  font-weight: 500;
  border-bottom: 1px solid gray;
  padding-top: 5px;
  padding-bottom: 5px;
}

.table-status table thead th {
  color: black;
  font-size: 14px;
}

.table-status table tbody td {
  color: black;
  font-size: 14px;
}

.nav-pills .card .card-body .nav-link.active {
  background-color: #f18142 !important;
}

.nav-tabs .nav-link {
  font-size: 17px;
  border-radius: 3px !important;
}

.nav-tabs .nav-link.active {
  border-top: 3px solid #f18142;
  border-radius: 1px !important;
}

.hp-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hp-text {
  font-size: 13px;
  font-weight: 500;
}

#returnForm .form-group label {
  font-size: 15px;
  color: black;
}

.navprofileheading {
  border: 2px solid #0060aa;
  margin-top: 5px;
  font-size: 20px;
  height: auto;
  padding: 5px 0px;
}

.navprofileheading span i {
  font-size: 20px;
}

.typebox {
  border: 2px solid gainsboro;
  border-radius: 5px;
}

th,
td {
  font-size: 10px;
}

.partsBox {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
}

.partsBox h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #f18142;
  text-transform: capitalize;
}

.partCard {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.partCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.partCard img {
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 8px;
}

.partCard h6 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  color: #333;
}

/* Default nav styles */
.owl-parts.owl-carousel .owl-nav {
  position: absolute;
  top: -55px;
  /* move above carousel */
  right: 0;
  /* align to right */
  display: flex;
  gap: 7px;
}

.owl-parts.owl-carousel .owl-nav button.owl-prev,
.owl-parts.owl-carousel .owl-nav button.owl-next {
  background: #fff !important;
  /* white background */
  border: 1px solid #ccc !important;
  color: #000 !important;
  /* black arrow */
  font-size: 18px !important;
  padding: 2px 10px !important;
  border-radius: 50%;
  /* rounded buttons */
  transition: 0.3s;
}

.owl-parts.owl-carousel .owl-nav button.owl-prev:hover,
.owl-parts.owl-carousel .owl-nav button.owl-next:hover {
  background: #000 !important;
  color: #fff !important;
}

.shopnow {
  display: none;
}

/* Hide navs on mobile */
@media (max-width: 768px) {
  .owl-parts.owl-carousel .owl-nav {
    display: none !important;
  }

  /* .owl-parts .item {
    display: inline-block;
    width: 30%;
    margin: 1%;
    vertical-align: top;
  } */

  .partsBox .partCard {
    margin-bottom: 10px;
    width: 100%;
    margin: 0 auto;
  }

  .owl-parts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .owl-parts .item {
    flex: 1 1 calc(33.33% - 10px);
    /* 3 per row */
    max-width: calc(33.33% - 10px);
    box-sizing: border-box;
  }

  .partCard img {
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
  }

  .partCard h6 {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    color: #333;
  }


}

@media (max-width: 600px) {
  
  .owl-parts.owl-carousel .owl-nav {
    display: none !important;
  }

  .shopnow {
    display: block;
    font-weight: 600;
  }

  .partsBox .partCard {
    margin-bottom: 10px;
    width: 100%;
    margin: 0 auto;
  }

  .owl-parts {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .owl-parts .item {
    flex: 1 1 calc(33.33% - 3px);
    max-width: calc(33.33% - 6px);
    box-sizing: border-box;
  }

  .partsBox h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f18142;
    text-transform: capitalize;
  }

  .partCard {
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  }

  .partCard:hover {
    transform: translateY(-1px);
    box-shadow: 0 0px 6px rgba(241, 129, 66, 0.5);
    background-color: rgba(241, 129, 66);
    color: white;
  }

  .partCard img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 5px;
  }

  .partCard h6 {
    font-size: 10px;
    font-weight: 500;
    margin-top: 5px;
    color: #333;
  }

}