*,
*:before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 400;
  color: #68707d;
  overflow-x: hidden;
 
}

a {
  text-decoration: none;
}

/* ul,
ol {
  list-style: none;
} */

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-size: cover;
}

p {
  line-height: 1.7;
  font-size: 16px;
}

button,
.button {
  border: none;
  background: none;
  font-size: 16px;
  font-family: inherit;
  font-weight: inherit;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.2s linear;
}

button:focus-visible,
.button:focus-visible {
  outline: 1px dashed #68707d;
}

button:hover,
.button:hover {
  opacity: 0.7;
}

.container {
  padding-right: 24px;
  padding-left: 24px;
}
/*-----------------------------------------*/
.owl-fleche{
  position: relative;
  margin: auto;
  
}
.owl-pub-item .owl-nav{
  overflow: hidden;
  height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background: #f02020;
}


.owl-pub-item .item {
  text-align: center;
}
.owl-fleche .nav-btn-left{
  height: 32px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  color: #0044aa;
  top: calc(50% - 20px) !important;
  left: 7px;
  transform:translateY(-50%);
  z-index: 1000;
}
.owl-fleche .nav-btn-right{
  height: 32px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  top: calc(50% - 20px) !important;
  right: 7px;
  color: #0044aa;
  transform:translateY(-50%);
  z-index: 1000;
}
.owl-fleche .nav-btn-left:hover,.owl-fleche .nav-btn-right:hover{
  color: #06a79c;
}

.owl-pub-item .owl-prev.disabled,
.owl-pub-item .owl-next.disabled{
  pointer-events: none;
  opacity: 0.2;
}
.owl-dots{
  position: absolute;
  bottom: 10px;
  z-index: 1000;
  left:50%;
  transform:translateX(-50%)

}

@media (min-width: 64em) {
  .container {
    max-width: 1110px;
    margin: 0 auto;
  }
}

.flex {
  display: flex;
}

.flex-ai-c {
  align-items: center;
}

.flex-jc-sb {
  justify-content: space-between;
}

.flex-jc-c {
  justify-content: center;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transform: 0.2s linear;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.header nav {
  position: relative;
  padding: 25px 0;
}

@media (min-width: 40em) {
  .header nav {
    border-bottom: 1px solid #b6bcc8;
  }
}

@media (min-width: 64em) {
  .header nav {
    padding: 45px 0;
  }
}

.header .toggle-menu {
  margin-right: 15px;
  cursor: pointer;
}

@media (min-width: 64em) {
  .header .main-navgation {
    align-self: flex-start;
    margin-left: 50px;
  }
  .header .main-navgation a {
    position: relative;
    font-size: 14px;
    color: #68707d;
    margin-right: 33px;
    transition: 0.2s linear;
  }
  .header .main-navgation a:hover {
    color: #1d2025;
  }
  .header .main-navgation a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -62px;
    width: 100%;
    height: 5px;
    opacity: 0;
    background-color: #ff7d1a;
    transition: 0.2s linear;
  }
  .header .main-navgation a:hover::after {
    opacity: 1;
  }
}

.header .mobile-navgation {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  height: 100%;
  width: 250px;
  z-index: 10;
  padding: 25px;
  background-color: white;
  transition: transform 0.2s linear;
}

.header .mobile-navgation.open {
  transform: translateX(0);
}

@media (min-width: 40em) {
  .header .mobile-navgation {
    width: 350px;
  }
}

.header .mobile-navgation .close-menu {
  display: block;
  margin-bottom: 55px;
  cursor: pointer;
}

.header .mobile-navgation a {
  display: block;
  color: #1d2025;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 18px;
  transition: 0.2s linear;
}

.header .mobile-navgation a:hover {
  padding-left: 10px;
  color: #68707d;
}

.header .controls {
  gap: 22px;
}

@media (min-width: 64em) {
  .header .controls {
    gap: 40px;
  }
}

.header .user-avater {
  width: 30px;
  height: 30px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: 0.2s linear;
}

@media (min-width: 64em) {
  .header .user-avater {
    width: 50px;
    height: 50px;
  }
}

.header .user-avater:hover {
  border-color: #ff7d1a;
}

.header .user-avater img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart.open .cart-list-wrapper {
  top: calc(100% + 10px);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 40em) {
  .cart.open .cart-list-wrapper {
    top: calc(100% + -15px);
  }
}

@media (min-width: 64em) {
  .cart.open .cart-list-wrapper {
    top: calc(100% + -30px);
  }
}

.cart.show-count .cart-icon .in-cart {
  opacity: 1;
  visibility: visible;
}

.cart.empty .cart-content {
  height: 185px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.cart .cart-icon {
  position: relative;
  cursor: pointer;
}

.cart .cart-icon .in-cart {
  position: absolute;
  top: -7px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 15px;
  color: white;
  font-size: 14px;
  text-align: center;
  border-radius: 25px;
  background-color: #ff7d1a;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear, visibility 0.3s linear;
}

.cart .cart-icon svg path {
  transition: 0.2s linear;
}

.cart .cart-icon:hover path {
  fill: #1d2025;
}

.cart .cart-list-wrapper {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 20px);
  opacity: 0;
  visibility: hidden;
  z-index: 8;
  background-color: white;
  border-radius: 6px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.2s linear, visibility 0.3s linear;
}

@media (min-width: 40em) {
  .cart .cart-list-wrapper {
    top: 100%;
    width: 360px;
    right: 0;
    left: initial;
    transform: initial;
  }
}

@media (min-width: 64em) {
  .cart .cart-list-wrapper {
    top: calc(100% + -15px);
  }
}

.cart .cart-list-wrapper .cart-heading {
  color: #1d2025;
  padding: 25px;
  border-bottom: 1px solid #b6bcc8;
}

.cart .cart-list-wrapper .cart-content {
  padding: 25px 25px 30px 25px;
}

.cart-content .cart-list .cart-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.cart-content .checkout-btn {
  width: 100%;
  color: white;
  padding: 15px 20px;
  background-color: #ff7d1a;
}

.cart-list .cart-item {
  margin-bottom: 25px;
}

.cart-list .cart-item .item-image {
  flex: 0 0 50px;
  overflow: hidden;
  border-radius: 6px;
}

.cart-list .cart-item .item-info {
  flex: auto;
  color: #68707d;
}

.cart-list .cart-item .item-title {
  font-weight: 400;
  margin-bottom: 5px;
}

.cart-list .cart-item .item-price-wrapper {
  display: flex;
}

.cart-list .cart-item .item-price-wrapper .item-count {
  margin: 0 10px 0 5px;
}

.cart-list .cart-item .item-price-wrapper .total-price {
  font-weight: bold;
  font-size: 18px;
  color: #1d2025;
}

.cart-list .cart-item .item-delete {
  transition: 0.2s linear;
}

.cart-list .cart-item .item-delete:hover {
  cursor: pointer;
  transform: scale(1.08);
}

.cart-list .cart-item .item-delete:hover img {
  filter: invert(17%) sepia(55%) saturate(7234%) hue-rotate(341deg) brightness(88%) contrast(95%);
}

.product-wrapper .container {
  display: flex;
  flex-direction: column;
  padding: 0;

}

@media (min-width: 40em) {
  .product-wrapper .container {
    padding: 20px 4px;
  }
}

@media (min-width: 64em) {
  .product-wrapper .container {
    flex-direction: row;
    gap: 10px;
    padding: 10px ;
  }
}

.product-images-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  user-select: none;
  max-width: 600px;
 
}

@media (min-width: 40em) {
  .product-images-wrapper {
    max-width: 440px;
    margin: auto;
  }
}

.preview-image-wrapper {
  position: relative;
  cursor: pointer;
}

@media (min-width: 40em) {
  .preview-image-wrapper .preview-image {
    border-radius: 15px;
  }
}

.arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.arrows > div {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.arrows > div img {
  transition: 100ms linear;
}

.arrows > div:hover img {
  filter: invert(52%) sepia(91%) saturate(2132%) hue-rotate(349deg) brightness(108%) contrast(101%);
}

.arrows .next {
  left: calc(100% - (15px + 40px));
}

.arrows .prev {
  left: 15px;
}

.count {
  position: absolute;
  bottom: -35px;
  display: none;
}

@media (max-width: 63.9375em) {
  .count {
    right: 4px;
    display: block;
  }
}

@media (max-width: 39.9375em) {
  .count {
    right: 15px;
  }
}

.count p {
  font-size: 16px;
}

.count span {
  font-weight: bold;
}

.thumbs-wrapper {
  display: flex;
  gap: 25px;
}

.thumbs-wrapper > div {
  position: relative;
  max-width: 92px;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: 0.2s linear;
}

.thumbs-wrapper > div.active {
  border-color: #ff7d1a;
}

.thumbs-wrapper > div:hover::after, .thumbs-wrapper > div.active::after {
  opacity: 1;
}

.thumbs-wrapper > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.2s linear;
}

.thumbs-wrapper > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-wrapper {
  max-width: 650px;
  padding: 15px;
  font-weight: 600;
}

@media (min-width: 40em) {
  .product-details-wrapper {
    padding: 45px 0;
  }
}

@media (min-width: 64em) {
  .product-details-wrapper {
    padding: 0 0 65px 0;
  }
}

.product-details-wrapper .product-brabd {
  font-size: 10px;
  color: #f00;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.product-details-wrapper .product-title {
  margin-bottom: 25px;
  color: #1d2025;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.1;
}

@media (min-width: 64em) {
  .product-details-wrapper .product-title {
    font-size:20px;
    
    margin-bottom: 40px;
  }
}

.product-details-wrapper .product-description {
  margin-bottom: 30px;
  font-weight: 400;
}

.product-details-wrapper .current-price-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.product-details-wrapper .current-price-wrapper .current-price {
  color: #1d2025;
  font-size: 30px;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
}

.product-details-wrapper .current-price-wrapper .discount {
  background: #ffede0;
  color: #ff7d1a;
  padding: 5px 10px;
  border-radius: 6px;
}

.product-details-wrapper .previous-price-wrapper .previous-price {
  color: #b6bcc8;
  text-decoration: line-through;
  font-size: 17px;
}

.product-details-wrapper .add-to-cart-form {
  position: relative;
  margin-top: 40px;
}

@media (min-width: 40em) {
  .product-details-wrapper .add-to-cart-form {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}

.product-details-wrapper .add-to-cart-form.alert .form-alert {
  top: calc(100% + 10px);
  opacity: 1;
}

.product-details-wrapper .add-to-cart-form .product-quantity {
  flex-basis: 155px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1d2025;
  padding: 15px 20px;
  border-radius: 6px;
  background-color: #f7f8fd;
}

.product-details-wrapper .add-to-cart-form .product-quantity-num {
  font-size: 17px;
}

.product-details-wrapper .add-to-cart-form .plus,
.product-details-wrapper .add-to-cart-form .minus {
  cursor: pointer;
  transition: 0.2s linear;
}

.product-details-wrapper .add-to-cart-form .plus:hover,
.product-details-wrapper .add-to-cart-form .minus:hover {
  opacity: 0.6;
}

.product-details-wrapper .add-to-cart-form .add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 270px;
  gap: 10px;
  width: 100%;
  color: white;
  padding: 10px 20px;
  font-weight: 500;
  margin-top: 15px;
  background-color: #ff0000;
  box-shadow: 0 15px 15px #ffeadb;
}

@media (min-width: 40em) {
  .product-details-wrapper .add-to-cart-form .add-btn {
    margin-top: 0;
  }
}

.product-details-wrapper .add-to-cart-form .add-btn img {
  filter: brightness(100);
}

.product-details-wrapper .add-to-cart-form .form-alert {
  position: absolute;
  top: calc(100% + 1px);
  opacity: 0;
  transition: 0.2s linear;
}

.product-details-wrapper .add-to-cart-form .form-alert.success {
  color: #4cae4f;
}

.product-details-wrapper .add-to-cart-form .form-alert.fail {
  color: #db143c;
}

.lightbox-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s linear, visibility 0.3s linear;
}

.lightbox-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-wrapper .lightbox-content {
  max-width: 100%;
  margin: auto;
}

.lightbox-wrapper .lightbox-content .product-images-wrapper {
  max-width: 500px;
  gap: 25px;
}

.lightbox-wrapper .preview-image-wrapper .arrows > div {
  width: 60px;
  height: 60px;
}

.lightbox-wrapper .preview-image-wrapper .arrows .next {
  left: 100%;
  transform: translateX(-50%);
}

.lightbox-wrapper .preview-image-wrapper .arrows .prev {
  left: 0;
  transform: translateX(-50%);
}

.lightbox-wrapper .preview-image-wrapper .count {
  color: #fff;
}

.lightbox-wrapper .preview-image-wrapper .close-lightbox {
  position: absolute;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}

.lightbox-wrapper .preview-image-wrapper .close-lightbox svg path {
  transition: 0.2s linear;
}

.lightbox-wrapper .preview-image-wrapper .close-lightbox:hover svg path {
  fill: #ff7d1a;
}

.lightbox-wrapper .preview-image-wrapper .close-lightbox img {
  filter: brightness(100%);
}

.lightbox-wrapper .thumbs-wrapper {
  justify-content: center;
}

.lightbox-wrapper .thumbs-wrapper > div {
  width: 95px;
  height: 95px;
}


/*  */

/* ====================== */
  
  .gallery-container {
	background-color: white;
	border-radius: 0.5rem;
	padding: 1.5rem;
	display: flex;
	gap: 1.5rem;
	max-width: 56rem;
  }
  
  .thumbnails-container {
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  .nav-button {
	padding: 0.5rem;
	border: none;
	background: none;
	border-radius: 9999px;
	cursor: pointer;
	transition: background-color 0.2s;
  }
  
  .nav-button:hover:not(:disabled) {
	background-color: #f3f4f6;
  }
  
  .nav-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
  }
  
  #thumbnailContainer {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 1rem 0;
	max-height: 400px;
	overflow-y: auto;
  }
  
  .thumbnail {
	width: 5rem;
	height: 5rem;
	border-radius: 0.5rem;
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.2s;
	opacity: 0.6;
	cursor: pointer;
  }
  
  .thumbnail:hover {
	opacity: 1;
  }
  
  .thumbnail.active {
	border-color: #3b82f6;
	opacity: 1;
  }
  
  .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .main-image-container {
	flex: 1;
	position: relative;
  }
  
  .main-image-wrapper {
	aspect-ratio: 0.7;
	border-radius: 0.5rem;
	overflow: hidden;
	/* width: 100%; */
	background-color: #f9fafb;
	cursor: zoom-in;
  }
  
  #mainImage {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .main-nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	border: none;
	border-radius: 9999px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
	transition: all 0.2s;
	opacity: 0;
  }
  
  .main-image-container:hover .main-nav-button:not(:disabled) {
	opacity: 1;
  }
  
  .main-nav-button:hover:not(:disabled) {
	background-color: #f3f4f6;
	transform: translateY(-50%) scale(1.1);
  }
  
  .main-nav-button:disabled {
	opacity: 0;
	cursor: not-allowed;
  }
  
  .main-nav-button.prev {
	left: 1rem;
  }
  
  .main-nav-button.next {
	right: 1rem;
  }
  
  /* Dialog styles */
  .dialog-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
  }
  
  .dialog-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
  }
  
  .dialog-image {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
  }
  
  .dialog-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.8);
	border: none;
	color: white;
	cursor: pointer;
	padding: 0.75rem;
	border-radius: 9999px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	z-index: 1010;
  }
  
  .dialog-close:hover {
	background: rgba(0, 0, 0, 0.95);
	transform: scale(1.1);
  }
  
  .dialog-nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
  }
  
  .dialog-nav-button:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-50%) scale(1.1);
  }
  
  .dialog-nav-button:disabled {
	opacity: 0.3;
	cursor: not-allowed;
  }
  
  .dialog-nav-button.prev {
	left: 1rem;
  }
  
  .dialog-nav-button.next {
	right: 1rem;
  }
  @media (max-width: 768px) {
	.gallery-container {
		flex-direction: column;
		padding: 10px;
	}
  
	#thumbnailContainer {
	  display: flex;
	  flex-direction: row;
	  gap: 0.5rem;
	  margin: 1rem 0;
	  max-height: 400px;
	  overflow-y: auto;
  }
  
  
	.thumbnails-container {
		width: 100%;
		height: 100px;
		flex-direction: row;
		width: max-content;
		order: 2;
	}
  
	.thumbnailContainer {
		flex-direction: row;
		width: max-content;
		height: 100px;
	}
  
	.nav-arrow {
		width: 30px;
		height: 100%;
		top: 0;
	}
  
	#prevButton{
		left: 0;
		transform: rotate(-90deg);
		transform-origin: center center;
	}
  
	#nextButton {
		right: 0;
		left: auto;
		transform: rotate(-90deg);
		transform-origin: center center;
	}
  
	.main-image-container {
		width: 100%;
	}
  
	.main-image {
		width: 100%;
		height: auto;
		max-height: 70vh;
	}
  
	.main-nav {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}
  
	.dialog-nav {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
  
	.dialog-nav.prev {
		left: 10px;
	}
  
	.dialog-nav.next {
		right: 10px;
	}
  }