* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff6f7;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #de3451;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a7283d;
}

html,
body {
  background-color: #fff6f7;
  scroll-behavior: smooth;
}

.boxWidth {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

button,
input,
textarea,
select {
  outline: none;
}

select {
  text-indent: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cg clip-path='url(%23clip0_204_2)'%3E%3Cpath d='M9.2625 10.7373L15 16.4623L20.7375 10.7373L22.5 12.4998L15 19.9998L7.5 12.4998L9.2625 10.7373Z' fill='%23884C3A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_204_2'%3E%3Crect width='30' height='30' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 25px;
}

#productPageSection {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
#productPageSection .breadcrump {
  padding: 10px 10px 0 10px;
}
#productPageSection .breadcrump p {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
#productPageSection .breadcrump p a {
  text-decoration: none;
  color: #de3451;
}
@media screen and (max-width: 475px) {
  #productPageSection .breadcrump p a {
    font-size: 0.9rem;
  }
}
#productPageSection .breadcrump p a:hover {
  text-decoration: underline;
}
#productPageSection .productSection {
  padding: 10px;
  display: flex;
}
@media screen and (max-width: 767px) {
  #productPageSection .productSection {
    flex-wrap: wrap;
  }
}
#productPageSection .productSection .imageCarousel {
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  #productPageSection .productSection .imageCarousel {
    padding-right: 0px;
  }
}
#productPageSection .productSection .imageCarousel #productImageCarousel .image img {
  width: 100%;
  border-radius: 15px;
}
#productPageSection .productSection .imageCarousel #productImageCarousel .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background: hsla(350, 16%, 38%, 0.2);
  border-radius: 50px;
}
#productPageSection .productSection .imageCarousel #productImageCarousel .owl-dots button span {
  background: #8a8a8a;
  height: 8px;
  width: 8px;
}
#productPageSection .productSection .imageCarousel #productImageCarousel .owl-dots .active span {
  background: #de3451;
  width: 20px;
}
#productPageSection .productSection .imageCarousel #productImageCarousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #productPageSection .productSection .imageCarousel #productImageCarousel .owl-nav {
    display: none;
  }
}
#productPageSection .productSection .imageCarousel #productImageCarousel .owl-nav button {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5px !important;
  border-radius: 50px;
  transition: 0.2s;
  border: 1px solid transparent;
  pointer-events: all;
}
#productPageSection .productSection .imageCarousel #productImageCarousel .owl-nav button:hover {
  background-color: white;
  border: 1px solid #de3451;
  transform: scale(1.1);
}
#productPageSection .productSection .imageCarousel #productImageCarousel .owl-nav button:active {
  transform: scale(0.95);
}
#productPageSection .productSection .imageCarousel .keyHighlights {
  background-color: #fff8ed;
  border: 2px solid #f6b23e;
  border-radius: 12px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  margin-top: 15px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #productPageSection .productSection .imageCarousel .keyHighlights {
    display: none;
  }
}
#productPageSection .productSection .imageCarousel .keyHighlights .list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  #productPageSection .productSection .imageCarousel .keyHighlights .list {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
}
#productPageSection .productSection .imageCarousel .keyHighlights .list img {
  width: 50px;
}
@media screen and (max-width: 425px) {
  #productPageSection .productSection .imageCarousel .keyHighlights .list img {
    width: 35px;
  }
}
#productPageSection .productSection .imageCarousel .keyHighlights .list span {
  font-family: "recoleta_altmedium", Arial, sans-serif;
  color: #c17f0e;
  line-height: 22px;
  text-transform: capitalize;
}
@media screen and (max-width: 1200px) {
  #productPageSection .productSection .imageCarousel .keyHighlights .list span {
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  #productPageSection .productSection .imageCarousel .keyHighlights .list span {
    font-size: 0.9rem;
  }
}
#productPageSection .productSection .productDetails {
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  #productPageSection .productSection .productDetails {
    padding-left: 0px;
    padding-top: 20px;
  }
}
#productPageSection .productSection .productDetails .productInfo .category {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
#productPageSection .productSection .productDetails .productInfo .title {
  color: #884c3a;
  font-family: "recoleta_altmedium", Arial, sans-serif;
}
#productPageSection .productSection .productDetails .productInfo .price #productPrice {
  font-family: "recoleta_altmedium", Arial, sans-serif;
  color: #de3451;
}
#productPageSection .productSection .productDetails .productInfo .price #productRegularPrice {
  font-family: "recoleta_altregular", Arial, sans-serif;
  color: #884c3a;
  padding-bottom: 4px;
}
#productPageSection .productSection .productDetails .productInfo .price #discountPercentage {
  font-family: "recoleta_altregular", Arial, sans-serif;
  color: #00933b;
  padding-bottom: 4px;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientTitle h5 {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1rem; /* adjust if needed */
  white-space: normal;
  overflow-x: visible;
}
@media screen and (max-width: 575.98px) {
  #productPageSection .productSection .productDetails .productInfo .varients .varientsList {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
  }
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList::-webkit-scrollbar {
  display: none;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient {
  border: none;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.1s;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient h5 {
  font-family: "recoleta_altmedium", Arial, sans-serif;
  color: #884c3a;
  padding: 8px 16px;
  border: 1px solid #ffddd3;
  background-color: #fff4f0;
  border-radius: 10px;
  width: 100%;
  text-align: center;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient span {
  position: relative;
  font-family: "recoleta_altregular", Arial, sans-serif;
  font-size: 0.8rem;
  background-color: #ffffff;
  border: 1px solid #ffeae3;
  border-top: 0px;
  border-radius: 0 0 6px 6px;
  padding: 2px 10px;
  padding-left: 20px;
  color: #884c3a;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient span::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='13' viewBox='0 0 10 13' fill='none'%3E%3Cpath d='M4.41589 10C4.2134 10 4.11215 9.85202 4.11215 9.55607V5.86448H0.443925C0.179128 5.86448 0.0311527 5.76324 0 5.56075L0.0233646 4.43925C0.0233646 4.23676 0.163552 4.13551 0.443925 4.13551H4.11215V0.443925C4.11215 0.147975 4.2134 0 4.41589 0H5.58411C5.78661 0 5.88785 0.147975 5.88785 0.443925V4.13551L9.57944 4.11215C9.85981 4.11215 10 4.2134 10 4.41589V5.56075C10 5.76324 9.85981 5.86448 9.57944 5.86448H5.91122V9.55607C5.91122 9.85202 5.80218 10 5.58411 10H4.41589Z' fill='%23884C3A'/%3E%3Cpath d='M0.481587 12.55C0.160529 12.55 0 12.4 0 12.1V11.425C0 11.1417 0.160529 11 0.481587 11H9.51841C9.83947 11 10 11.1417 10 11.425V12.1C10 12.4 9.83947 12.55 9.51841 12.55H0.481587Z' fill='%23884C3A'/%3E%3C/svg%3E");
  width: 9px;
  height: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient:hover h5 {
  border: 1px solid #de3451;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient:hover span {
  border: 1px solid #de3451;
  border-top: 0px;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient:active {
  transform: scale(0.96);
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient.selected h5 {
  border: 1px solid #de3451;
  color: #de3451;
}
#productPageSection .productSection .productDetails .productInfo .varients .varientsList .varient.selected span {
  border: 1px solid #de3451;
  border-top: 0px;
}
#productPageSection .productSection .productDetails .productInfo .addons {
  padding-top: 10px;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonTitle h5 {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1rem; /* adjust if needed */
  white-space: normal;
  overflow-x: visible;
}
@media screen and (max-width: 575.98px) {
  #productPageSection .productSection .productDetails .productInfo .addons .addonsList {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
  }
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList::-webkit-scrollbar {
  display: none;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon {
  border: none;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  transition: 0.1s;
  border: 1px solid #ffddd3;
  background-color: #fff4f0;
  border-radius: 10px;
  padding: 2px 10px 2px 2px;
  gap: 7px;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon .info h5 {
  font-family: "recoleta_altmedium", Arial, sans-serif;
  color: #884c3a;
  width: 100%;
  text-align: center;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon .info span {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon:hover {
  border: 1px solid #de3451;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon:active {
  transform: scale(0.96);
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon.selected {
  border: 1px solid #de3451;
}
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon.selected h5,
#productPageSection .productSection .productDetails .productInfo .addons .addonsList .addon.selected span {
  color: #de3451;
}
#productPageSection .productSection .productDetails .productInfo .nameOnCakeElement h5 {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
#productPageSection .productSection .productDetails .productInfo .nameOnCakeElement input {
  background-color: transparent;
  border: 1px solid #e2a38f;
  border-radius: 10px;
  padding: 15px 15px;
  color: #884c3a;
  font-family: "recoleta_altmedium", Arial, sans-serif;
}
#productPageSection .productSection .productDetails .productInfo .orderButtons a,
#productPageSection .productSection .productDetails .productInfo .orderButtons button {
  flex: 1;
  text-decoration: none;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-family: "recoleta_altmedium", Arial, sans-serif;
  font-size: 1.2rem;
  transition: 0.1s;
  border: 1px solid;
}
#productPageSection .productSection .productDetails .productInfo .orderButtons a:active,
#productPageSection .productSection .productDetails .productInfo .orderButtons button:active {
  transform: scale(0.98);
}
#productPageSection .productSection .productDetails .productInfo .orderButtons a:disabled,
#productPageSection .productSection .productDetails .productInfo .orderButtons button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
#productPageSection .productSection .productDetails .productInfo .orderButtons .addToCartButton {
  background-color: #fff;
  color: #de3451;
  border-color: #de3451;
}
#productPageSection .productSection .productDetails .productInfo .orderButtons .addToCartButton:hover {
  background-color: #feeded;
}
#productPageSection .productSection .productDetails .productInfo .orderButtons .orderButton {
  background-color: #de3451;
  color: white;
  border-color: #de3451;
}
#productPageSection .productSection .productDetails .productInfo .orderButtons .orderButton:hover {
  background-color: #c11f3e;
}
#productPageSection .productSection .productDetails #productDescriptionSection {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item {
  background-color: #fff4f0;
  border: 1px solid #ffd3dc;
  border-radius: 10px;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item .accordion-header button {
  outline: none;
  box-shadow: none;
  background-color: transparent;
  color: #884c3a;
  font-family: "recoleta_altmedium", Arial, sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 350px) {
  #productPageSection .productSection .productDetails #productDescriptionSection .accordion-item .accordion-header button {
    padding: 10px;
    font-size: 1rem;
  }
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item .accordion-header button:not(.collapsed) {
  color: #de3451;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item .accordion-collapse {
  border-top: 1px dashed #f3d1c7;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item .accordion-collapse .accordion-body {
  font-family: "recoleta_altregular", Arial, sans-serif;
  color: #884c3a;
}
@media screen and (max-width: 350px) {
  #productPageSection .productSection .productDetails #productDescriptionSection .accordion-item .accordion-collapse .accordion-body {
    padding: 10px;
  }
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header {
  flex-wrap: nowrap;
}
@media screen and (max-width: 350px) {
  #productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header {
    padding: 10px;
    flex-wrap: wrap;
  }
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header .left h4 {
  color: #884c3a;
  font-family: "recoleta_altmedium", Arial, sans-serif;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header .left .star img {
  width: 15px;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header .left .star span {
  padding-left: 2px;
  font-size: 0.9rem;
}
@media screen and (max-width: 350px) {
  #productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header .right {
    padding-top: 10px;
    width: 100%;
  }
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header .right button {
  border: 1px solid #de3451;
  padding: 6px 10px;
  color: #de3451;
  border-radius: 8px;
  background-color: transparent;
}
@media screen and (max-width: 350px) {
  #productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header .right button {
    width: 100%;
  }
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header .right button:hover {
  background-color: #de3451;
  color: white;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .header .right button:active {
  transform: scale(0.98);
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .body .review {
  background-color: #f8eeea;
  border: 1px solid #f3d1c7;
  padding: 10px 15px;
  border-radius: 10px;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .body .review .top img {
  width: 60px;
  border-radius: 150px;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .body .review .top .name h6 {
  font-family: "recoleta_altmedium", Arial, sans-serif;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .body .review .top .name .star img {
  width: 15px;
}
#productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .body .review .bottom h5 {
  font-family: "recoleta_altmedium", Arial, sans-serif;
}
@media screen and (max-width: 350px) {
  #productPageSection .productSection .productDetails #productDescriptionSection .accordion-item #productReview .accordion-body .reviewSection .body .review .bottom h5 {
    font-size: 1rem;
  }
}
#productPageSection #reviewModal .modal-content {
  border-radius: 15px;
}
#productPageSection #reviewModal .modal-content .modal-header {
  border-radius: 0 0 20px 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
#productPageSection #reviewModal .modal-content .modal-header h3 {
  color: #884c3a;
  font-family: "recoleta_altmedium", Arial, sans-serif;
}
#productPageSection #reviewModal .modal-content .modal-header button {
  box-shadow: none;
  border: 1px solid #d9c6c1;
  border-radius: 50px;
  padding: 10px;
}
#productPageSection #reviewModal .modal-content .modal-header button:active {
  transform: scale(0.96);
}
#productPageSection #reviewModal .modal-content .modal-body .inputField label {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
#productPageSection #reviewModal .modal-content .modal-body .inputField input {
  padding: 10px;
  border: 1px solid #884c3a;
  background-color: #fffaf8;
  border-radius: 8px;
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
#productPageSection #reviewModal .modal-content .modal-body .inputField input::-moz-placeholder {
  color: #e6d8d4;
}
#productPageSection #reviewModal .modal-content .modal-body .inputField input::placeholder {
  color: #e6d8d4;
}
#productPageSection #reviewModal .modal-content .modal-body .inputField input:focus {
  border-bottom: 2px solid #884c3a;
}
#productPageSection #reviewModal .modal-content .modal-footer button {
  background-color: #de3451;
  color: #de3451;
  font-family: "recoleta_altregular", Arial, sans-serif;
  border-radius: 10px;
  width: 100%;
  color: white;
  border: none;
  padding: 12px;
  transition: 0.1s;
}
#productPageSection #reviewModal .modal-content .modal-footer button:hover {
  background-color: #c11f3e;
}
#productPageSection #reviewModal .modal-content .modal-footer button:active {
  transform: scale(0.98);
}/*# sourceMappingURL=product.css.map */