/** Shopify CDN: Minification failed

Line 2761:0 Unexpected "}"
Line 4361:8 Expected identifier but found whitespace
Line 4361:13 Unexpected ";"

**/
/* Hide default checkbox but keep it accessible */
.color-filter-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  pointer-events: none;
}

/* Layout for each color item */
.color-filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 8px 0;
  cursor: pointer;
}

/* Swatch circle */
.color-swatch-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #bbb;
  box-sizing: border-box;
  display: inline-block;
}

/* Selected state: thicker border and subtle shadow */
.color-filter-label input[type="checkbox"]:checked + .color-swatch-circle {
  border-width: 2px;
  border-style: solid;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

/* Disabled state */
.color-filter-label.disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Color name (visible for verification). Hide after you confirm correctness by adding .hide-names to .list-menu__item */
.color-swatch-name {
  font-size: 13px;
  line-height: 1;
}

/* Count styling */
.color-swatch-count {
  /* margin-left: auto; */
  font-size: 14px;
  color: inherit;
}

/* Debug small text — remove after verification if undesired */
.color-debug small {
  color: #888;
  font-size: 11px;
  margin-left: 6px;
}

/* OPTIONAL: To hide the color name once verified, uncomment or add this class to parent:
   .list-menu__item.hide-names .color-swatch-name { display: none; }
*/


/* custom atc design for homepage  */

.index .card:not(.ratio)>.card__content {
    grid-template-rows: unset;
}
.index .custom-trending-product-div .product-card-div .card__content {
    max-height: unset;
}
.index .card__information{
  min-height:190px;
}

@supports (-webkit-touch-callout: none) {
  .your-text-class {
    line-height: 1.5;
    padding-top: 5px;
  }
}

body {
  -webkit-font-smoothing: antialiased; /* For better font rendering on iOS and macOS */
  -moz-osx-font-smoothing: grayscale;
}

.thumbnail-slider.product-page-sidebar::-webkit-scrollbar{
  display:none;
}

.button {
  font-family: "Montserrat";
  background-color: #F6A3B6;
  color: #fff;
  border-radius: 0;
  border: 2px solid #fff;
  cursor: pointer;
  font-size: var(--f3);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0;
  padding: 20px 40px;
  transition: 0.5s;
  height: 50px;
}
@media screen and (max-width: 1400px) {
  .button {
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .button {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .button {
    padding: 8px 20px;
    font-size: 12px;
  }
}
.button:hover {
  background-color: transparent;
  color: #ac6f64;
  border: 2px solid #ac6f64;
}

.light-blue-button {
  background-color: #2194e4;
  color: #fff;
  padding: 24px 48px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  font-size: var(--f3);
  text-transform: uppercase;
  margin-top: 0;
  padding: 20px 40px;
  transition: 0.5s;
}

.light-white-button {
  background-color: #ac6f64;
  color: #fff;
  padding: 24px 48px;
  border-radius: 0;
  border: 2px solid #fff;
  cursor: pointer;
  font-size: var(--f3);
  text-transform: uppercase;
  margin-top: 0;
  padding: 24px 48px;
  transition: 0.5s;
}
@media screen and (max-width: 1400px) {
  .light-white-button {
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .light-white-button {
    padding: 15px 20px;
    font-size: 13px;
  }
}
.light-white-button:hover {
  background-color: #032140;
  color: #fff;
}

.product-button {
  background-color: #032140;
  color: #fff;
  padding: 24px 48px;
  border-radius: 0;
  border: 1px solid #032140;
  cursor: pointer;
  font-size: var(--f3);
  text-transform: uppercase;
  margin-top: 0;
  padding: 15px 10px;
  transition: 0.5s;
}
@media screen and (max-width: 1400px) {
  .product-button {
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .product-button {
    padding: 10px 0;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .product-button {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }
}
.product-button:hover {
  background-color: transparent;
  color: #032140;
  border: 1px solid #032140;
}

@media screen and (max-width: 1200px) {
  .product-buttons .product-button {
    margin-bottom: 0px;
  }
}

.product-light-white-button {
  background-color: #fff;
  color: #032140;
  padding: 24px 48px;
  border-radius: 0;
  border: 1px solid #032140;
  cursor: pointer;
  font-size: var(--f3);
  text-transform: uppercase;
  margin-top: 0;
  padding: 15px 10px;
  transition: 0.5s;
}
@media screen and (max-width: 1400px) {
  .product-light-white-button {
    padding: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .product-light-white-button {
    padding: 10px 0;
  }
}
@media screen and (max-width: 576px) {
  .product-light-white-button {
    width: 100%;
    padding: 20px;
    border-radius: 0;
    border: 0;
  }
}
.product-light-white-button:hover {
  background-color: #032140;
  color: #fff;
}

@media screen and (min-width: 1700px) {
  .container {
    max-width: 1600px;
    min-width: 1600px;
  }
}

.mr-20 {
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .mr-20 {
    margin-right: 10px;
  }
}
@media screen and (max-width: 576px) {
  .mr-20 {
    margin: 0;
  }
}

.mr-30 {
  margin-right: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-10 {
  margin-top: 10px;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.only-mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  .only-mobile {
    display: block;
  }
}

.flex-aligncenter {
  display: flex;
  align-items: center;
}

.flex-flexwrap {
  display: flex;
  flex-wrap: wrap;
}

.only-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .only-desktop {
    display: none;
  }
}

.grid-4-mobile {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .grid-4-mobile {
    display: grid;
    grid-template-columns: auto auto auto auto;
  }
}

.pr-50 {
  padding-right: 50px;
}

.back-button {
  color: #383838;
  font-size: var(--f7);
  padding-right: 5px;
}

.entercode .button {
  padding: 0 40px;
}

.copyright {
  text-align: center;
  font-size: var(--f3);
  color: #4d4d4d;
  padding: 20px 0 0px;
  font-family: Proxima Nova;
  /* font-size: var(--f7); */
  font-weight: 400;
  line-height: 14px;
  display:none;
}

.footer {
  background: #fafafa;
}

.footer-main {
  background-color: #fafafa;
}
.footer-main .footer {
  display: flex;
  gap: 50px;
  padding: 80px 0;
  border-bottom: 1px solid #e8e8e8;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  .footer-main .footer {
    padding: 60px 0;
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .footer-main .footer {
    padding: 60px 0;
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .footer-main .footer {
    padding: 45px 0;
  }
}
.footer-main .footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-main .footer li {
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
}
@media (max-width: 1280px) {
  .footer-main .footer li {
    padding-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .footer-main .footer li {
    padding-bottom: 10px;
  }
}
.footer-main .footer li a {
  font-family: Montserrat;
  font-weight: 400;
  font-size: var(--f3);
  padding-right: 0;
  color: #2b2b2b;
  cursor: pointer;
}

.footer-main .footer li a i {
  font-size: 22px;
}

@media (max-width: 1280px) {
  .footer-main .footer li a {
    font-size: 14px;
  }
}
.footer-main .footer li a:hover {
  font-weight: 600;
  color: #032140;
}
@media (max-width: 992px) {
  .footer-main .footer {
    flex-direction: column;
    padding: 30px;
    gap: 10px;
    border-bottom: 0;
    padding: 30px 0px 10px 0px;
  }
}
.footer-main .footer .footer-col-lg {
  width: 32%;
}

.footer-main .footer .footer-col-lg .footer-social-media {
  display: flex;
  justify-content: left;
  align-items: baseline;
  gap: 32px;
}
@media (max-width: 992px) {
  .footer-main .footer .footer-col-lg .footer-social-media {
    justify-content: center;
  }
}

.footer-main .footer .footer-col-lg .desc {
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 500;
  line-height: 22px;
  /* text-align: left; */
  max-width: 350px;
  font-weight: 500;
  font-size: var(--f3);

  margin-bottom: 10px;
}
.footer-main .footer .footer-col-lg a {
  /* padding-right: 32px; */
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 1280px) {
  .footer-main .footer .footer-col-lg {
    width: 28%;
  }
  .footer-main .footer .footer-col-lg img {
    width: 240px;
  }
  .footer-main .footer .footer-col-lg .desc {
    max-width: 300px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer-main .footer .footer-col-lg a {
    /* adding-right: 20px; */
  }
}
@media (max-width: 1080px) {
  .footer-main .footer .footer-col-lg img {
    width: 200px;
  }
  .footer-main .footer .footer-col-lg .desc {
    max-width: 300px;
    /* font-size: 12px; */
    margin-bottom: 8px;
  }
  .footer-main .footer .footer-col-lg a {
    /* padding-right: 15px; */
  }
}
@media (max-width: 1024px) and (max-width: 992px) {
  .footer-main .footer .footer-col-lg {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .footer-main .footer .footer-col-lg li {
    text-align: center;
  }
  .footer-main .footer .footer-col-lg .desc {
    margin: 0 auto;
  }
}

.footer-main .footer .footer-col {
  width: 18%;
}
.footer-main .footer .footer-col .footer-contact {
  word-break: break-word;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.footer-main .footer .footer-col .footer-contact .address{
  margin-top:0;
}

.main-page-custom-faq p:nth-child(even){ 
  margin-top:0px;
  margin-bottom:20px;
  
}
.main-page-custom-faq p:nth-child(odd){
  margin-bottom:0px;
}




@media (max-width: 500px) {
  .footer-main .footer .footer-col .footer-contact {
    display: block;
    text-align: center;
  }
}

@media (max-width: 1280px) {
  .footer-main .footer .footer-col {
    width: 19%;
  }
}
.footer-main .footer .footer-col h2 {
  color: #2b2b2b;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  .footer-main .footer .footer-col h2 {
    /* font-size: var(--f3); */
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .footer-main .footer .footer-col h2 {
    /* font-size: var(--f7); */
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .footer-main .footer .footer-col h2 {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  .footer-main .footer .footer-col {
    width: 100%;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843); */
    padding-bottom: 10px;
  }
  .footer-main .footer .footer-col h2{
    justify-content: center;
  }
}
.footer-main .footer .footer-col ul li {
  display: flex;
  justify-content: flex-start;
  align-items: first baseline;
}
.footer-main .footer .footer-col ul li img {
  width: 17px;
  margin-right: 8px;
  cursor: pointer;
}
.footer-main .footer .footer-col.small {
  width: 14%;
}
@media (max-width: 992px) {
  .footer-main .footer .footer-col.small {
    width: 100%;
  }
}

.footer-mobile-main {
  margin-bottom: 70px;
  display: none;
  background-color: #f6f6f6;
}
@media (max-width: 768px) {
  .footer-mobile-main {
    display: block;
  }
}
.footer-mobile-main .footer {
  display: flex;
  gap: 50px;
  padding: 80px 0;
  border-bottom: 1px solid #e8e8e8;
}
.footer-mobile-main .footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-mobile-main .footer li {
  font-family: "OLARWE";
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-mobile-main .footer li {
    padding-bottom: 10px;
  }
}
.footer-mobile-main .footer li a {
  font-family: "OLARWE";
  font-weight: 400;
  font-size: var(--f3);
  padding-right: 15px;
  color: #2b2b2b;
  cursor: pointer;
}
.footer-mobile-main .footer li a:hover {
  font-weight: 500;
  color: #032140;
}
@media (max-width: 992px) {
  .footer-mobile-main .footer {
    flex-direction: column;
    padding: 30px;
    gap: 10px;
    border-bottom: 0;
    padding: 30px 30px 10px;
  }
}
.footer-mobile-main .footer .footer-col {
  width: 20%;
}

.footer-mobile-main .footer .footer-col h2 {
  color: #4d4d4d;
  font-size: var(--f4);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-mobile-main .footer .footer-col h2 {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  .footer-mobile-main .footer .footer-col {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .footer-main .footer .footer-col h2,
  .footer-main .footer .footer-col ul li {
    justify-content: center;
  }
}

.footer-mobile-main .footer .footer-col ul li img {
  cursor: pointer;
}

.font-icon {
  padding-right: 15px;
  font-size: 24px;
  color: #032140;
}
@media (max-width: 1280px) {
  .font-icon {
    font-size: var(--f4);
  }
}
@media (max-width: 1024px) {
  .font-icon {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .font-icon {
    font-size: var(--f3);
  }
}

@media (max-width: 992px) {
  .footer-mobile {
    position: absolute;
    transform: scaleY(0);
    transition: 0.3s ease-in-out;
  }
}

@media (max-width: 992px) {
  .footer-mobile-active {
    transform: scaleY(1);
    transition: 0.3s ease-in-out;
  }
}

.footer-social {
  background-color: #032140;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .footer-main {
    /* display: none; */
  }
}
.mobile-link {
  border: none;
  margin-bottom: 50px;
}
.mobile-link .card-header {
  background: transparent;
  font-size: var(--f4);
  color: #000;
  font-weight: 600;
}
.mobile-link .icon {
  margin-right: 0.5rem;
}

/* ////// Updated twitter icon //////////////////////// */

.fa.fa-twitter {
  font-family: sans-serif;
}
.fa.fa-twitter::before {
  content: "𝕏";
  font-size: 27px;
}

/*////////////////////////////////////////////////////////////// Header css Custom///////////////////////////////////// */

.page-width {
  max-width: 85%;
}

@media (max-width: 600px) {
  .page-width {
    max-width: 90%;
  }
}

.header {
  /* padding: 0 !important; */
}

@media (max-width: 992px) {
  .header {
    grid-template-columns: auto auto 1fr;
  }
}

.list-menu .header__menu-item span {
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: bold;
  line-height: 19.2px;
  text-align: left;
  color: #353535;
  white-space: nowrap;
  &:hover,
  &:focus,
  &:active,
  .active-m-link {
    text-shadow: 0 0 0.9px #333, 0 0 0.9px #333, 0 0 0.9px #333;
  }
}

#HeaderMenu-gift-for-you span {
  font-weight: 700;
  color: #ff5a5a;
  text-shadow: none !important ;
  &:hover,
  &:focus,
  &:active,
  .active-m-link {
    text-shadow: none;
  }
}
#HeaderMenu-gift-for-you {
  position: relative;
}

#HeaderMenu-gift-for-you:after {
  content: "";
  background: url("/cdn/shop/files/icons8-gift.gif?v=1725525925")
    no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 30px;
      top: -3px;
    right: -27px;
  position: absolute;
  display: block;
}

@media (max-width: 1500px) {
  #HeaderMenu-gift-for-you span {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .page-width {
    padding: 0;
  }
}
/* @media screen and (min-width: 750px) {
  .page-width {
    padding: 0;
  } */

.active-m-link {
  text-shadow: 0 0 0.9px #333, 0 0 0.9px #333, 0 0 0.9px #333;
}

@media screen and (max-width: 989px) {
  .header__heading,
  .header__heading-link {
    text-align: left;
    max-width: 150px;
  }
}

@media (min-width: 1100px) and (max-width: 1500px) {
  .header__heading-link {
    min-width: 120px;
    padding: 0 !important;
  }
}

.header__inline-menu .list-menu--inline {
  flex-wrap: nowrap;
}

@media (max-width: 1300px) {
  .header__inline-menu .list-menu--inline summary.list-menu__item {
    padding-right: 2rem;
  }
}

/* /////////////////////Header list Pop Up ///////////////////////////////////////////////// */

.global-settings-popup,
.header__submenu.global-settings-popup {
  box-shadow: 0px 4px 40px 0px #00000033;
  border: none;
  padding: 0 20px;
  max-width: 280px;
  min-width: 200px;
}

.header__submenu.global-settings-popup li:not(:last-child) {
  border-bottom: 1px solid #cecece;
  width: 100%;
}

/* .header__submenu .header__menu-item ::before, .header__submenu.global-settings-popup li a:before {
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%);
  left: 0;
  background: url("/cdn/shop/files/ulico.png?v=1725086425");
} */

.header__submenu .header__menu-item {
  padding: 0;
  padding: 13px 0;
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 500;
  line-height: 19.2px;
  text-align: left;
  color: #4d4d4d;
  text-decoration: none !important;
  position: relative;
  justify-content: flex-start;

  &:hover {
    /* text-shadow: 0 0 .9px #333, 0 0 .9px #333, 0 0 .9px #333; */
    font-weight: 700;
    text-decoration: none;
  }
}

#HeaderMenu-MenuList-1 a{
color:#4d4d4d !important;
}

.header__submenu .list-menu__item--active {
  text-decoration: none;
  /* text-shadow: 0 0 .9px #333, 0 0 .9px #333, 0 0 .9px #333; */
  font-weight: 700;
}

.header__submenu .header__submenu {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

/* ////////////////////////////////////Banner//////////////////////////////// */

.banner__box .banner__heading {
  font-family: Abril Fatface;
  font-size: var(--f5);
  font-weight: 400;
  /* line-height: 64.75px; */
  text-align: left;
  color: #fff;
}

.banner__box .banner__text p {
  font-family: Montserrat !important;
  font-size: var(--f4);
  font-weight: 400 !important;
  /* line-height: 24px; */
  text-align: left;
}

@media (min-width: 750px) {
  .banner__content {
    padding: 0rem !important;
  }
}

/* ///////////////////////////////////////  Offer Section CSS /////////////////////////////////////  */


.offer-section {
  padding-top: 30px;
 
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  align-items: start;
  gap: 20px; */
}

.offer-section  .slick-arrow{top:42% ;}
.offer-section .offer-card {
  max-width: 380px;
}

.offer-section .offer-card .offer-image {
  max-height: 300px;
  width: 100%;
}
.offer-section .offer-card .offer-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.offer-section .offer-card h3 {
  font-family: Montserrat;
  font-size: var(--f1);
  font-weight: 500;
  line-height: 38.4px;
  text-align: center;
  color: #F6A3B6;
  margin: 24px 0;
}
.offer-section .offer-card p {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 3px solid #000;
  font-family: Montserrat;
  font-size: var(--f1);
  font-weight: 500;
  line-height: 38.4px;
  text-align: center;
  color: #000;
}

@media (max-width: 992px) {
  .offer-section .offer-card {
    min-width: 205px;
  }

  .offer-section .offer-card h3 {
    margin: 0;
  }

  .offer-section {
    /* overflow: scroll;
    justify-content: start; */
  }
}

@media (max-width: 576px) {
  .offer-section .offer-card p,
  .offer-section .offer-card h3 {
    line-height: 32px;
  }
}



/* //////////////////////////////////////////////////// custom banner slider//////////////////////////////// */

/* .santosh.Slider-div  .slick-track{
  margin-left:-35px;
}
 */









/* //////////////////////////////////////// Heading CSS ///////////////////////////// */

.title-wrapper,
.collection-hero__text-wrapper {
  font-family: "OLARWE";
  color: #2b2b2b;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 72px;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .title-wrapper,
  .collection-hero__text-wrapper {
    font-size: 30px;
    line-height: 48px;
  }
}
@media screen and (max-width: 576px) {
  .title-wrapper,
  .collection-hero__text-wrapper {
    font-size: 24px;
    line-height: 40px;
  }
}
.title-wrapper .title,
.collection-hero__text-wrapper .collection-hero__title {
  margin: 0;
  font-family: "OLARWE";
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
  padding: 0 40px;
  position: relative;
  background: #fff;
  z-index: 1;
}
.title-wrapper::after,
.collection-hero__text-wrapper::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #000000 53.5%,
    rgba(0, 0, 0, 0) 100%
  );
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 992px) {
  .title-wrapper::after,
  .collection-hero__text-wrapper::after {
    top: 25px;
  }
  .title-wrapper .title,
  .collection-hero__text-wrapper .collection-hero__title {
    padding: 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .title-wrapper::after,
  .collection-hero__text-wrapper::after {
    top: 20px;
  }
}

/* //////////////////////////// Newsletter /////////////////////////////// */

.newsletter .inline-richtext {
  font-family: math;
  font-size: 40px;
  font-weight: 400;
  line-height: 72px;
}
.newsletter .newsletter__subheading {
  max-width: 650px;
  margin-bottom: 3rem !important;
}

.newsletter .newsletter__subheading p strong {
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 500;
  line-height: 19.2px;
  text-align: center;
  letter-spacing: 0px;
  color: #2b2b2b;
}

@media screen and (max-width: 992px) {
  .newsletter .inline-richtext {
    font-size: 30px;
    line-height: 48px;
  }
  .newsletter .newsletter__subheading p strong {
    font-size: 14px;
    line-height: 17px;
  }
}
@media screen and (max-width: 576px) {
  .newsletter .inline-richtext {
    font-size: 24px;
    line-height: 40px;
  }
  .newsletter .newsletter__subheading p strong {
    font-size: 13px;
    line-height: 14px;
  }
}

.signup-form-new {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 30px;
}

.newsletter .field__input {
  padding: 24px;
  /* border: 2px solid #EDEDED; */
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #2b2b2b;
}

.newsletter ::placeholder {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #a1a1a1;
}

/* .newsletter .field:after{
  box-shadow:none;
} */

.newslettter-new  .button{
  border:2px solid #ac6f64;
  
}

/* //////////////////////////////////// Baddie Era ///////////////////////// */

.main-era .era-section {
  /* padding-top: 40px; */
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
  /* gap: 30px; */
  /* justify-items: center; */
}
@media screen and (max-width: 992px) {
  .main-era .era-section {
    /* display: flex; */
    /* flex-wrap: nowrap; */
    /* overflow: scroll; */
  }
}
@media screen and (max-width: 576px) {
  .main-era .era-section {
    /* display: grid; */
    /* flex-wrap: nowrap; */
    /* overflow: scroll; */
  }
}
.main-era .era-section .card {
  position: relative;
  cursor: pointer;
  /* max-width: 241px; */
  /* max-height: 542px; */
}
@media screen and (max-width: 992px) {
  .main-era .era-section .card {
    /* width: 35%; */
    /* flex: 0 0 auto; */
  }
}
@media screen and (max-width: 768px) {
  .main-era .era-section .card {
    /* width: 40%; */
    /* flex: 0 0 auto; */
  }
}
@media screen and (max-width: 576px) {
  .main-era .era-section .card {
    height: 615px;
    /* max-height: 500px; */
    /* max-width: 300px; */
    /* min-width: 300px; */
    /* min-height: 500px; */
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    z-index: 1;
  }
}
.main-era .era-section .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 576px) {
  .main-era .era-section .card img {
    height: 532px;
    /* max-width: 225px; */
    border: 4px solid #ac6f64;
    margin: auto;
    max-width: 76%;
    max-height: 650px;
  }
}
@media (max-width: 600px) {
  .main-era .era-section .card .overlay1 {
    position: absolute;
    left: 9%;
    bottom: 4%;
    right: 0;
    width: 80%;
    height: 550px;
    overflow: hidden;
    background: rgba(172, 111, 100, 0.4901960784);
    transform: rotate(6deg);
    transition: 0.5s ease;
    z-index: -1;
    display: flex;
  }
  .main-era .era-section .card .overlay2 {
    display: flex;
    position: absolute;
    left: 10%;
    bottom: 4%;
    right: 0;
    width: 80%;
    height: 550px;
    overflow: hidden;
    background: #ac6f64;
    transform: rotate(-6deg);
    transition: 0.5s ease;
    z-index: -1;
  }
}

.main-era .era-section .card .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0%;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, #000 80%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: 0.5s ease;
  z-index: 2;
}
@media (max-width: 576px) {
  .main-era .era-section .card .overlay {
    height: 70px;
    bottom: 12px;
    vertical-align: middle;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1019607843);
    box-shadow: -12px 12px 12px 0px rgba(255, 255, 255, 0.1019607843) inset;
    box-shadow: 12px -12px 12px 0px rgba(194, 194, 194, 0.1019607843) inset;
    align-items: center;
  }

  .main-era .era-section .card:hover .overlay {
    height: 70px !important;
  }
  .main-era .era-section .card .overlay p {
    margin: 0;
  }
}
.main-era .era-section .card .overlay p {
  font-size: 24px;
  color: #fff;

  text-transform: capitalize;
}
.main-era .era-section .card:hover .overlay {
  height: 50%;
} /*# sourceMappingURL=Era.css.map */

.main-era .era-section .card .slick-next {
  right: 6px;
}
.main-era .era-section .card .slick-prev {
  left: -7px;
}


/* /////////////////////////////Banner Css  ///////////////////// */

@media (max-width: 750px) {
  .banner .banner__box {
    background: #000;
  }

  .banner .page-width {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .banner-2 {
    max-width: 100%;
  }
  .banner-2 .banner__box {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1080px) {
  .banner-2 {
    max-height: 460px;
  }
}

@media (max-width: 600px) {
  .banner-2 .banner__content {
    max-height: 250px;
  }
}

/* /////////////////////////////////////// New Moms ads CSS /////////////////////////// */

.newads {
  padding: 60px 140px;
  background: #ffeee7;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .newads {
    padding: 45px 100px;
  }
}
@media screen and (max-width: 992px) {
  .newads {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 576px) {
  .newads {
    padding: 14px 0;
    margin-bottom: 32px;
  }
}
.newads .newadswrapper {
  background: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
}
.newads .newadswrapper .newadscontent {
  width: 850px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* top: 12px; */
}
.newads .newadswrapper h3 {
  margin: 0;
  font-family: "OLARWE";
  font-size: var(--f2);
  font-weight: bold;
  color: #e3738c;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 576px) {
  .newads .newadswrapper h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .newads .newadswrapper h2 {
    font-size: var(--f4);
  }
}
.newads .newadswrapper img {
  width: 260px;
  margin-bottom: -40px;
}
@media screen and (max-width: 576px) {
  .newads .newadswrapper img {
    width: 120px;
  }
} /*# sourceMappingURL=NewMoms.css.map */

/* //////////////////////////////////// Product Card CSS ///////////////////////////////////////////////// */

.product-card-div {

  max-width: 307px;
  /* max-height: 698px; */
   @media (min-width:601px){
        border:1px solid #eee;
      padding:1rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  &:hover{
    box-shadow: 0 0 15px gray;
    /* box-shadow: 0px 4px 15px 0px #00000033; */

  }
   }

  @media (max-width: 600px) {
    max-width: 100%;
  }
}

.product-card-div .card__inner {
  max-height: 404px;
}
.product-card-div .card__media .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-card-div .card__content .card__heading a {
  font-family: Montserrat;
  font-size: var(--f4);
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em; 
    line-height: 1.5em; 
}
.product-card-div .price__container {
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  display: flex;
  gap: 8px;
}
.product-card-div .price-item--regular {
  font-family: Montserrat;
  font-size: var(--f3) !important;
  font-weight: 400 !important;
  line-height: 19.2px;
  text-align: left;
  color: #7e7e7e !important;
}
.product-card-div .price-item--last {
  color: #000;
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
}
.product-card-div .price-off-per {
  white-space:nowrap;
  color: #ff4343;
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  text-transform: lowercase;
}
.product-card-div .color {
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 700;
  line-height: 19.2px;
  text-align: left;
  color: #646464;
}

.product-card-div .card-information .color-variants {
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 700;
  line-height: 19.2px;
  text-align: left;
  color: #464646;
}

.custom-color-sec {
  height: 25px;
}

.underline-links-hover :hover a {
  text-decoration: none !important;
  text-underline-offset: 0rem;
}

.card-wrapper .rating-star {
  --font-size: 2.5 !important;
}
@media (max-width: 600px) {
  .card-wrapper .rating-star {
    --font-size: 2 !important;
  }
}

.product__info-wrapper .badge{
  margin-left:15px;
}


.badge {
  border: none;
  display: inline-block;
  letter-spacing: 0rem;
  /* color: rgb(0 0 0); */
  word-break: break-word;
  font-family: Montserrat;
  font-weight: bold;
  text-align: left;
  margin-right:5px;
              
}
.discount-badge {
    width: fit-content;
    top: 0px;
    position: absolute;
    left: -12px;
    background: beige;
    font-size: 9px;
    font-weight: bold;
    rotate: -44deg;
    padding: 8px;
}
/* .card__inner .badge{
   bottom:15px;
        } */

.card__content {
  padding: 0 !important;
  /* padding-bottom: 0 !important; */

  min-height:160px;
  @media (max-width:600px){
    min-height:140px;
  }
}

.card__inner  .card__content {
 
  @media (max-width:600px){
   
    max-height:100%;
  }
}


.offer-collection-metafiled {
  right: 0;
  bottom: 20px;
  position: absolute;
  display: flex;
  height: 30px;
  width: 130px;
  margin-right: 0;
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 500;
  line-height: 19.2px;
  color: #fff;
  background: #007cd6;
  justify-content: center;
  align-items: center;
}

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

/* ////////////////////////////////////// Trending //////////////////////////// */

/* 
  .custom-trending-product-div {
  max-width: 88%;
  margin: 0 auto;
  padding: 0;
  scroll-padding-left: 0 !important;
  > li {
    margin-left: 0 !important;
    width: 100% !important;
  }
}


  .slider-component-desktop.page-width {
  max-width: 85% !important;
}
.custom-trending-product-div
  .slider-buttons {
  width: 100%;
  top: 40%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;

  > .slider-counter {
    display: none;
  }

  > .slider-button {
    color: rgb(255 255 255) !important;
    background: #f2c4bc;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  > .slider-button .icon {
    height: 4.6rem;
  }
}

.custom-trending-product-div .trending-section {
  display: flex;
  max-width: 88%;
  margin: 0 auto;
  padding: 0;
}

.custom-trending-product-div .trending-items li {
  max-width: 436px;
}

.custom-trending-product-divv .product-card-div {
  max-width: 100%;
}

.custom-trending-product-div .product-card-div .card__inner {
  max-height: 574px;
}
 */

.custom-trending-product-div {
  max-width: 85%;
  padding: 0;
  margin: 0 auto;
}


.custom-trending-product-div .product-card-div {
  max-width: 436px;
}


.custom-trending-product-div .product-card-div .card__content {
  max-height:160px;
 
}

.custom-trending-product-div .product-card-div .card__inner .card__content{
    max-height:100%;
}




.custom-trending-product-div .slick-track{
  margin:15px 0;
}

.custom-trending-product-div .product-card-div .card__inner {
  max-height: 574px;
  
@media(max-width:1600px){
  max-height: 504px;
  
}
}

.custom-trending-product-div .slick-arrow {
  color: rgb(255 255 255) !important;
  background: #f2c4bc;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 25px;
}

.custom-trending-product-div .slick-prev {
  left: -40px;
  top: 40%;
}
.custom-trending-product-div .slick-next {
  right: -37px;
  top: 40%;
}

/* ////////////////////////////////////////Shop The Collection Banner//////////////////////////////////////////////// */

.section-template--17466413219940__image_with_text_RPBERm-padding .page-width {
  max-width: 100%;
}
.image-with-text__text p {
  font-family: Montserrat;
  font-size: var(--f6);
  font-weight: 400;
  line-height: 28.8px;
  text-align: left;
  color: #2b2b2b;
}

.image-with-text__heading {
  font-family: Abril Fatface;
  font-size: var(--f5);
  font-weight: 400;
  line-height: 72px;
  text-align: left;
  color: #2b2b2b;
  max-width: 600px;
}

@media (max-width: 992px) {
  .image-with-text__heading {
    line-height: 38px;
  }
}

@media (max-width: 600px) {
  .image-with-text__heading {
    margin-top: 0px;
  }

  /* .image-with-text__content {
    padding-left: 0 !important;
  } */
}

.button:not([disabled]):hover::after {
  box-shadow: none;
}

/* //////////////////////////////Happy Costumers /////////////////////////// */

.happy-wrapper {
  background: #fafafa;
}
.happy-wrapper .happy-costumers {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 400px; */
  gap: 40px;
  margin-top: 20px;
  padding: 100px 0;
  margin-bottom: 0;
}

.happy-wrapper .happy-costumers .messege {
  position: relative;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 530px;
  box-shadow: 0px 2px 5.3px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 50px;
  gap: 30px;
  height: 238px;
  margin-bottom: 8px;
}

.happy-wrapper .happy-costumers .messege ::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 26px;
  background-image: url("/cdn/shop/files/da21dde662a19a4b8a6e17048660983a.png?v=1724760227");
  background-size: contain;
  background-repeat: no-repeat;
  top: 32px;
  left: 15px;
}
.happy-wrapper .happy-costumers .messege ::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 26px;
  background-image: url("/cdn/shop/files/23.png?v=1724760227");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 32px;
  right: 15px;
}
.happy-wrapper .happy-costumers .messege p {
  color: #2b2b2b;
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin: 0;

  @media (max-width: 576px) {
    line-height: 19px;
  }
}
.happy-wrapper .happy-costumers .messege h6 {
  margin: 0;
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #2b2b2b;
} /*# sourceMappingURL=Happy.css.map */

.happy-wrapper .title-wrapper {
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .happy-wrapper .happy-costumers {
    padding: 70px 0;
  }
}
@media (max-width: 992px) {
  .happy-wrapper .happy-costumers {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .happy-wrapper .happy-costumers {
    padding: 30px 0;
  }
}

/* ////////////////////////////// Discover //////////////////////////////////// */

.discover .content {
  margin-top: 30px;
  /* display: flex;
 
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px; */
}
@media (max-width: 992px) {
  .discover .content {
    /* grid-template-columns:1fr 1fr; */
  }
}
@media (max-width: 576px) {
  .discover .content {
    /* grid-template-columns:1fr ; */
  }
}
.discover .content .data {
  width: 100%;
}
.discover .content .data .image {
  max-width: 394px;
  max-height: 574px;

  overflow: hidden;
}
.discover .content .data .image img {
  width: 100%;
}
.discover .content .data h6 {
  text-transform:capitalize;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 300;
  line-height: 28.8px;
  text-align: center;
  color: #000;
}

/* .discover  .button{
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 500;
line-height: 18px;
text-align: center;
  color:#fff;
} */

.discover .slick-prev,
.discover .slick-next {
  top: 43%;
}

.slick-slide {
  /* width:inherit !important; */
}
.slick-track {
  /* width:inherit !important; */
  display: flex !important;
  gap: 16px;
  /* margin-left: -4px; */
}
@media (max-width: 992px) {
  .slick-slider .slick-prev,
  .slick-slider .slick-next {
    /* display:none !important; */
  }
}

@media (min-width: 992px) {
  .slick-slider .slick-dots {
    display: none !important;
  }
}

.slick-dots li {
  display: none !important;
}
/* 
.slick-dots li:nth-child(-n+4) {
  display: inline-block !important; 
} */

.slick-prev,
.slick-next {
  background-color: #f2c4bc;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: var(--f3);
  border-radius: 50%;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.slick-prev {
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
}

.slick-next {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

/* .slick-dots{
  display:none !important;
}
 */
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: #fff;
  outline: none;
  background: #f2c4bc;
}

/* ////////////////////////// Mom Banner B2 /////////////////////////////////////////////////////////////// */

.mom-css {
  background: linear-gradient(
    179.89deg,
    #eee9e8 0%,
    #ece8e7 10.34%,
    #ece8e7 21.59%,
    #ece8e7 37.29%,
    #ece8e7 51.91%,
    #ece8e7 73.53%,
    #ece8e7 99.81%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  /* max-height:484px; */
}

.mom-css .left {
  width: 40%;
  flex: 1;
  overflow: hidden;
}
.mom-css .left img {
  margin-bottom: -6px;
  margin-left: -20px;
  width: 123%;
  height: 100%;
  object-fit: cover;
}
.mom-css .right {
  padding: 20px 30px;
  width: 60%;
  text-align: center;
}
.mom-css .right .slide-wrapper {
  max-height: 316px;
  display: flex;
  -moz-column-gap: 15px;
  column-gap: 15px;
  /* overflow:hidden; */
}
.mom-css .right .slide-wrapper .slide {
  max-width: 240px;
}
.mom-css .right .slide-wrapper .slide img {
  width: 100%;
  max-height: 277px;
}
.mom-css .right .slide-wrapper .slide p {
  margin: 0;
  padding-top: 5px;
  font-family: OLARWE;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  color: #242222;
}
.mom-css .right a {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .mom-css {
    flex-direction: column;
  }
  .mom-css .left,
  .mom-css .right {
    width: 100%;
  }
  .mom-css .right {
    padding: 20px 10px;
  }
}

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

.mom-css .right .slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* /////////////////////////////////////////////////////////Home Page Accordian ////////////////////////////////////////////// */

.home-accordian.accordion {
  font-family: "Montserrat";
}

.home-accordian .accordion-item {
  margin-bottom: 20px;
  /* border-bottom: 1px solid #ddd; */
}

.home-accordian .accordion-header {
  font-weight: 600;
  font-family: "Montserrat";
  font-size: var(--f4);
  gap: 10px;
  padding: 15px;
  background: #f4f4f4;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.home-accordian .accordion-content {
  display: none;
  padding: 15px;
  background: #fff;
}

.home-accordian .accordion-content h4 {
  font-size: var(--f4);
  font-family: "Montserrat";
  font-weight: 500;
}
.home-accordian .accordion-content p,
.home-accordian .accordion-content ul,
.home-accordian .accordion-content li {
  font-weight: 400;
  font-size: var(--f7);
}
.home-accordian .accordion-content li a {
  color: #005dff;
  &:hover {
    font-weight: 500;
  }
}

.home-accordian .accordion-header:hover {
  background: #e2e2e2;
}

.home-accordian .chevron {
  font-size: 1em; /* Adjust size as needed */
  transition: transform 0.3s;
}

.home-accordian .accordion-content p {
  margin: 0;
}

/* Chevron rotation for open content */
.home-accordian .accordion-item.active .chevron {
  transform: rotate(180deg);
}

/* /////////////////////////////////////////////Collections ///////////////////////////////////// */


 .collection-custom-description {
            margin: 20px auto;
        }

 .collection-custom-description        .text-wrapper {
            position:relative;
        }

 .collection-custom-description           .text-content {
         overflow: hidden;
            max-height: 20px;
            transition: max-height 0.3s ease;
   margin-right:50px;
      text-overflow: ellipsis;
   font-family: Montserrat;
font-size: var(--f7);
font-weight: 400;
/* line-height: 19.2px; */
text-align: left;
   text-transform:initial;
   >a{
     color:#005dff;
   }

        }

  .collection-custom-description       .text-content.expanded {
            max-height: 1000px;
    margin-right:0;
        }
 .collection-custom-description      .toggle-button2 {
   color: #AC6F64;
   text-decoration:underline;
   text-transform:uppercase;
   margin-left:10px;
   cursor:pointer;
 }

   .collection-custom-description      .toggle-button {
     top:0;
     right:-3px;
     position:absolute;
     width:fit-content;
          
            color: #AC6F64;
            cursor: pointer;
            margin-left: 5px;
      font-family: Montserrat;
font-size: var(--f7);
font-weight: 400;
/* line-height: 19.2px; */
text-align: left;
     &:hover{
       text-decoration:underline;
     }
        }

  .collection-custom-description       .toggle-button:hover {
            /* color: #8A4B41; */
        }

  .collection-custom-description       .hidden1 {
            display: none;
        }








.collection-hero__text-wrapper {
  margin-top: 30px;
}

#product-grid {
  row-gap: 50px;
  @media (max-width: 600px) {
    row-gap: 10px;
  }
}

/* ///////////////////////// Filters in collections ///////////////////////////////////////// */

span.active-facets__button-inner {
  border: none;
  box-shadow: none !important;
  border-radius: 41px !important;
  padding: 12px 24px !important;
  font-family: Montserrat;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 16.8px;
  text-align: left;
  color: #fff !important;
}

span.active-facets__button-inner:hover {
  background: #ac6f64 !important;
  border: none !important;
}

/* ////////////////////////////////////////////////// Login Page /////////////////////////////////////////// */

.customer.login,
.customer.register {
  box-shadow: 0px 4px 40px 0px #00000033;
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  @media (max-width: 600px) {
    margin: 30px 20px !important;
  }
}

.customer.register,
.customer.login .login-text {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  text-align: center;
}

.field__input,
.customer .field input {
  padding: 15px 22px;
  border: 1px solid #cecece;
}

.field__input,
.customer .field ::placeholder {
  font-family: Montserrat;
  font-size: var(--f7);
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  color: #949494;
}

/* ?????????//////////////////////////////////////////////////////////////////  TOP BAR   Announcement Bar   /////////////////////////////////////////// */

.utility-bar {
  background: #ffdeb7;
}

.announcement-bar__message {
  font-family: Montserrat;
  font-size: var(--f7);
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  color: #242222;
}

/* //////////////////////////////////////////////////////////////    Product Page /////////////////////////////////////////////////////////////////////////////// */

@media (min-width: 1080px) {
  .product.grid {
    gap: 40px;
  }


  .grid__item.product__media-wrapper {
    width: 45% !important;
    max-height:650px;
  }

  .product__info-wrapper {
    max-width: 60% !important;
    width: 55% !important;
  }

  .custom-media {
    display: flex !important;
    flex-direction: row-reverse;
  }

  .custom-media .product-page-main-gallery {
    width: 80%;
  }

  .custom-media .product-page-main-gallery ul {
    height: 100%;
    max-height:600px;
    overflow:hidden;
  }

  .custom-media .product-page-sidebar {
    width: 20%;
    max-height: 544px;
    overflow: scroll;
    align-items: flex-start !important;

    > button {
      display: none !important;
    }
  }

  .custom-media .product-page-sidebar ul {
    flex-direction: column;
  }
  .custom-media .product-page-sidebar ul li {
    width: 100% !important;
  }

  .product__info-container {
    max-width: 100% !important;
  }
}



.product__info-container .product__title h1 {
  font-family: Montserrat;
  font-size: var(--f1);
  font-weight: 700;
  /* line-height: 24px; */
  letter-spacing: 0.03em;
  text-align: left;
  color: #4d4d4d;
}

.product-page-line {
  height: 1px;
  border: none;
  background: #cecece;
  opacity: 0.6;
}

.price-item.price-item--sale.price-item--last {
  font-family: Montserrat;
  font-size: var(--f3) !important;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
  @media (max-width: 600px) {
    font-size: var(--f4) !important;
  }
}

.price-item.price-item--regular {
  font-family: Montserrat;
  font-size: var(--f3) !important;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #7e7e7e;
  @media (max-width: 600px) {
    font-size: var(--f4) !important;
  }
}

.product__info-wrapper .price-off-per {
  color: #ff4343;
  background-repeat: no-repeat !important;
  padding: 5px 7px 4px 10px;
  background: url(/cdn/shop/files/discount.png?v=1725442131);
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 15.6px;
  text-align: left;
  background-size: contain;

  /* background-size: cover; */
  @media (max-width: 1100px) {
    font-size: var(--f3);
  }
}

.price-off{
  font-family:Montserrat;
    font-size: var(--f7) ;
  font-weight: 600;
  color:#00A122;
}

.product__tax.caption.rte {
  color: #7e7e7e;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  @media (max-width: 1100px) {
    font-size: var(--f3);
  }
}

@media (min-width:601px) and (max-width:992px){
     .product-grid  .grid__item{
   display:flex;
       justify-content:center;
       >.card-wrapper{
         width:100%;
         max-width:100%;
       }
  }
}



/* @media (max-width:600px){
     .product-grid  .grid__item{
    width:100% !important;
       max-width:100% !important;
  }
} */


/* ///////////////////////////////////////////// Product Page Size & color /////////////////////////////////////////////////////////////////////// */
.product-form__input {
  max-width: 100%;
}

.product-size label {
  font-family: Montserrat;
}

.product-form__input--pill.product-size input[type="radio"]:checked + label {
  background-color: #ac6f64 !important;
  border: 1px solid #000;
}
.product-form__input--pill.product-color input[type="radio"]:checked + label {
 background-color:transparent;
  border: 1px solid #000 !important;
}

.product-form__input--pill input[type="radio"] + label {
}

.product-form__input--pill input[type="radio"] + label {
  border: 1px solid #dbdbdb !important;
  background-color: transparent;
  color: rgba(var(--color-foreground));
  border-radius: 60px !important;
  color: rgb(var(--color-foreground));
  display: inline-block;
  margin: 0.7rem 0.5rem 0.2rem 0;
  padding: 0 !important;
  height: 50px;
  width: 50px;
  display: inline-flex !important;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-family: Montserrat !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px;
  letter-spacing: 0.03em !important;

  text-align: center;
  transition: border var(--duration-short) ease;
  cursor: pointer;
  position: relative;
}

.product-form__input.product-form__input--pill .form__label,
.product-form__input.product-form__input--swatch .form__label {
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #4d4d4d;
}

.product-form__input.product-form__input--swatch .form__label p {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #4d4d4d;
}

.swatch-input__input:checked + .swatch-input__label {
  /* outline: none !important; */
}




/* //////////////////////////////////////////product-page-color//////////////////////////////////////////////////// */


fieldset .custom-color-sec{
  height: auto;
}


.custom-color-sec .color-circles-product-page {
 
  gap: 20px;
    display: flex;
  align-items:center;
  justify-content:flex-start;
}

.custom-color-sec .color-circles-product-page span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ccc; 
  display: inline-block;
}


.pincode-div .pincode-box{
  max-width:90%;
  gap:15px;
  position:relative;
  @media (max-width:992px){
    max-width:100%;
  }
  
}

.pincode-div .pincode-box.pin{
  max-width:100%;
  
}




.pincode-div .pincode-box i{
    font-size: 20px;
    color: #AC6F64;
    left: 8px;
    position: absolute;
    top: 30%;
}
.pincode-div .pincode-box ::placeholder{
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 400;
  color:#7E7E7E;


}
.pincode-div .pincode-box input{
  padding-left:30px;
   font-family: Montserrat;
font-size: var(--f3);
font-weight: 400;
  color:#424242;
  width:70%;
  border: 1px solid #AC6F6473;
  border-radius:5px;
  
}
.pincode-div .pincode-box .pincode-btn{
  display:flex;
  flex-wrap:nowrap;
width:30%;


}
/* .pincode-div .pincode-box.pin .loader{
  
  width:29px;
  margin-top:11px;
}


.pincode-div .pincode-box .loader{
  width:32px;
  margin-top:11px;
}
 */
.pincode-div  .pincode-box div .button{
    border:2px solid #AC6F64;
   border-radius:5px;
  width:100%;
  min-width:100% !important;
  }

.pincode-div .pincode-msg-div p{
  margin:5px 0 0 0 ;
  >i{
    margin-right:5px;
  }
}

/* /////////////////////////////////////////// Product Page Add to Cart Button //////////////////////////////////////////////// */

.product-form__buttons {
  display: flex;
  gap: 16px;
  max-width: 90%;
  justify-content: flex-start;

  @media (max-width: 992px) {
    max-width: 100%;
    flex-direction: column;
  }
}

.product-form__buttons .buy-button {
  border: 2px solid #ac6f64;
  max-width: 320px;
  width: 45%;
  border-radius: 5px;
  @media (max-width: 992px) {
    width: 100%;
    max-width: 100%;
  }
}

}





/* //////////////////////////////////Product Page COD Return Button ////////////////////////////////////////////////////// */

.product-page-return {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px !important;
  @media (max-width: 992px) {
    flex-direction: column;
    gap: 20px;
  }
  > div {
    gap:5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 60px;
    font-family: Montserrat;
    font-size: var(--f3);
    font-weight: 400;
    /* letter-spacing: 0.03em; */
    text-align: left;
    color: #4d4d4d;
    box-shadow: 0px 4px 40px 0px #00000033;
    @media (max-width: 992px) {
      width: 100%;
    }
  }
}

.share-button__button .share-label{
      font-size: 17px;
    font-family: montserrat;
}


/* /////////////////////////////////////////////////////Product PAGE  custom Description ///////////////////////////////////////////////// */
.custom-product-description hr {
  margin: 0 !important;
}

.custom-product-description .tab-header {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin-bottom: 15px;
  @media (min-width: 1100px) {
    max-width: 60%;
  }
}

.custom-product-description .tab-header .tab-button {
  outline: none;
  background: transparent;
  max-width: 250px;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-bottom: 2px solid #fff;
  font-family: Montserrat;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #4d4d4d;

  &:hover,
  &:active {
    border-bottom: 2px solid #ac6f64;
  }
}

/* ////////////////////////////////////////////////// FAQs///////////////////////////////////////////////////////////////////// */

#product-faqs {
  margin-bottom:20px;
}

#product-faqs  h4{
  margin-bottom:0;
  font-family: Montserrat;
  
font-size: var(--f3);
font-weight: 500;
  color:#000;
}


#product-faqs  p{
  margin-top:5px;
   margin-bottom:0;
  font-family: Montserrat;
  
font-size: var(--f7);
font-weight: 400;
}

.main-page-custom-faq p {
    text-decoration: none;
    text-transform: none;
}


/* ////////////////////////////////////////////////////  Product Page Review /////////////////////////////////////////////////////////////// */

.jdgm-write-rev-link.jdgm-write-rev-link {
  border-radius: 5px !important;
}
.jdgm-rev-widg__title {
  text-align: left;
  font-family: Montserrat;
  font-size: var(--f4) !important;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #4d4d4d;
}

.jdgm-histogram__bar {
  margin: 0 24px;
  width: 200px !important;
  height: 8px !important;
  border-radius: 10px !important;
}

.jdgm-histogram__bar {
  height: 8px !important;
}
.jdgm-histogram__bar-content {
  height: 100%;
  height: 8px !important;
  border-radius: 10px !important;
}

.jdgm-histogram .jdgm-star , .jdgm-rev-widg .jdgm-star, .jdgm-preview-badge .jdgm-star.jdgm-star {
    color: #de7921 !important;
}

.jdgm-histogram__row[data-rating="5"] .jdgm-histogram__bar-content,
.jdgm-histogram__row[data-rating="4"] .jdgm-histogram__bar-content {
  background-color: #00c342 !important;
}
.jdgm-histogram__row[data-rating="3"] .jdgm-histogram__bar-content {
  background-color: #ffbe18 !important;
}
.jdgm-histogram__row[data-rating="2"] .jdgm-histogram__bar-content,
.jdgm-histogram__row[data-rating="1"] .jdgm-histogram__bar-content {
  background-color: #fb1a1a !important;
}

.jdgm-write-rev-link.jdgm-write-rev-link {
  border: none !important;
  font-family: Montserrat;
  font-size: var(--f3) !important;
  font-weight: 500 !important;
  /* line-height: 20px; */
  text-align: center;
}
@media (max-width: 600px) {
  .jdgm-widget-actions-wrapper {
    margin: 0 auto !important;
    width: 80%;
    padding-bottom: 24px;
  }
}

/* /////////////////////////////  product page carousel left div /////////////////////////////////////////////////////////////////////////////////////////// */

.thumbnail[aria-current]:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none !important;
}
.thumbnail[aria-current]:focus,
.thumbnail.focused {
  outline: 0;
  box-shadow: none !important;
}
.thumbnail[aria-current] {
  opacity: 1;

  box-shadow: none !important;
  /* border-color: rgb(var(--color-foreground)); */

  @media (min-width: 1100px) {
    border-left: 4px solid #ac6f64 !important;
  }
}
.thumbnail:hover {
  opacity: 1 !important;
}
.thumbnail {
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  background-color: transparent;

  @media (min-width: 1100px) {
    padding-left: 10px !important;
    border-left: 4px solid #e6e6e6 !important;
  }
}

/* ////////////////////////////////////////////// Related Product CSS in  Prouct Page ////////////////////////////////////////////////////////  */

@media (min-width: 600px) {
  .product-page-related .related-products__heading {
    display: none;
  }
}

.product-page-related .related-products__heading {
  font-family: Montserrat;
  font-size: var(--f1);
  font-weight: 400;
  /* line-height: 38.4px; */
  letter-spacing: 0.03em;
  text-align: left;
}

.product-page-related .product-card-div .card__inner{
  max-height:368px;
}

@media (min-width: 992px) {
  .product-page-related ul {
    flex-wrap: nowrap;
    > * {
      width: 20% !important;
    }
  }

  .product-page-related ul .related-data {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #4d4d4d;
  }
}

@media (max-width: 992px) {
  .product-page-related ul .related-data {
    display: none;
  }
}

.product-page-related ul .related-data h4 {
  color: #4d4d4d;
  font-family: Montserrat;
  font-size: var(--f1);
  font-weight: 400;
  /* line-height: 54px; */
  letter-spacing: 0.03em;
  /* text-align: left; */
}

.product-page-related ul .related-data p {
  color: #4d4d4d;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
}



/* /////////////////////////////////////////////////Gift Card CSS /////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media (min-width: 1100px) {
  .custom-gallery .thumbnail[aria-current],
  .custom-gallery .thumbnail {
    border-left: 0 !important;
  }
}

/* ////////////////////////////////////////////////////////// Gift Right //////////////////////////////////////////////////////////////////// */

.giftRight {
  font-family: Montserrat;
  font-weight: 400;
  max-width: 690px;
  color: #000;
}
/* .giftRight h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 3%;
  color: #4d4d4d;
  margin-bottom: 20px;
} */
.giftRight p {
  font-weight: 400;
  font-size: var(--f3);
  margin-bottom: 6px;
}
/* .giftRight p span {
  color: #7e7e7e;
  text-decoration: line-through;
  margin-right: 10px;
}
.giftRight .discount {
  background-image: url(../../Images/discountborder.png);
  text-decoration: none;
  background-repeat: no-repeat;
  color: #ff4343;
  font-weight: 500;
  font-size: 13px;
  margin-left: 10px;
  padding: 5px 10px;
}
.giftRight .taxes {
  margin-bottom: 16px;
  color: #7e7e7e;
  font-size: var(--f7);
} */
.giftRight .points {
  margin-bottom: 10px;
  font-size: var(--f3);
  list-style: disc;
}
.giftRight .points li {
  font-size: calc(var(--f3) - 2px);
  @media (max-width: 576px) {
    font-size: var(--f3);
  }
}
.giftRight .pin {
  /* display: flex;
  -moz-column-gap: 24px;
  column-gap: 24px;
  margin-top: 16px;
  margin-bottom: 32px;
  flex: 1; */
}
.giftRight .pin ::-moz-placeholder {
  font-size: var(--f7);
  /* color: #242222; */
  font-weight: 400;
}
.giftRight .pin ::placeholder {
  font-size: var(--f7);
  /* color: #242222; */
  font-weight: 400;
}
.giftRight .pin input {
  box-sizing: border-box;
  /* padding: 0 20px; */
  outline: none;
  /* border-radius: 5px;
  border: 1px solid rgba(172, 111, 100, 0.45);
  margin-bottom: 0;
  display: block;
  width: calc(100% - 110px); */
}
.giftRight .pin button {
  font-family: Montserrat;
  cursor: pointer;
  /* border-radius: 5px;
  width: 100px;
  height: 56px;
  text-align: center;
  background-color: #ac6f64;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  border: none;
  text-transform: uppercase; */
}
.giftRight .gBox {
  border: 1px solid #ac6f64;
  border-radius: 5px;
  max-width: 690px;
  padding: 24px;
  margin-bottom: 32px;
}

.giftRight .gBox ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.giftRight .gBox .select-body {
  display: none;
}
.giftRight .gBox .activebody {
  display: block !important;
}
.giftRight .gBox .activebody button {
  top: 26%;
}
.giftRight .gBox .activebody img {
  width: 100% !important;
  max-height:170px;
  min-height:170px;
  @media (max-width:600px){
      max-height:140px;
  min-height:140px;
  }
}

.giftRight .gBox .select-gift {
  margin-bottom: 18px;
  padding: 18px;
  background-color: #ececec;
  color: #242222;
  font-size: var(--f3);
  font-weight: 500;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.giftRight .gBox .select-gift .drop {
  font-weight: 500;
  font-size: 25px;
  position: absolute;
  right: 18px;
  top: 10px;
}
.giftRight .carousel p {
  font-weight: 400;
  font-size: 16px;
  color: #242222;
  line-height: 20px;
}
.giftRight .carousel > ul:last-child {
  display: none;
}

.gBox hr {
  margin: 2rem 0;
}

.gBox  .select-body-text label {
  font-family: Montserrat;
    font-size: var(--f3);
    font-weight: 400;
    /* line-height: 20px; */
    text-align: left;
}

.gBox  .select-body-text select{
   font-family: Montserrat;
    font-size: var(--f3);
font-weight: 400;
/* line-height: 20px; */
text-align: left;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid #AC6F6473;
    @media (min-width:600px){
  max-width: 60%;
    }
}
.gBox  .select-body-text .row{
  margin-bottom:20px;
}

.gBox  .select-body-text select option{
  font-family: Montserrat;
    font-size: var(--f3);
font-weight: 400;
/* line-height: 20px; */
text-align: left;

}

.gBox .sub_product.active img{
  border:2px solid #AC6F64;
} 

.gBox  .select-body-text  textarea {
   @media (min-width:600px){
  max-width: 60%;
    }
  padding:10px;
  border-radius:5px;
  font-family: Montserrat;
    font-size: var(--f3);
font-weight: 400;
/* line-height: 20px; */
text-align: left;
  border:1px solid #AC6F6473;

}



.giftRight .option {
  margin: 12px 0 32px 0;
  text-align: end;
  font-size: var(--f6);
  font-weight: 400;
  display: none;
}
.giftRight .price-gift p {
  display: flex;
  justify-content: space-between;
  /* font-size: 16px; */
}

.giftRight .price-gift p i span {
  color: #7e7e7e;
  margin-right: 10px;
}

.giftRight .price i {
  font-style: normal;
  float: right;
}
.giftRight .total {
  font-size: var(--f4);
  font-weight: 500;
}
.giftRight .total i {
  font-style: normal;
  float: right;
}
.giftRight .buy {
  background-color: #ffffff;
  max-width: 329px;
  width: 100%;
  border: 1px solid #ac6f64;
  padding: 18px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  color: #ac6f64;
}
.giftRight .add {
  background-color: #ac6f64;
  max-width: 329px;
  width: 100%;
  border: 1px solid #ac6f64;
  padding: 18px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: uppercase;
  color: #ffffff;
  float: right;
}

.custom-gift-product .product-form__buttons {
  max-width: 100%;
}








@media (min-width: 1100px) {
  .gift-card-des .tab-header {
    max-width: 100%;
    justify-content: center;
    gap: 30px;
  }
}

/* /////////////////////////////////////////////////////////// Cart Contents CSS ///////////////////////////////////////////////// */
.cart__contents .cart-item__details {
  font-family: Montserrat;
  position:relative;
}

.cart__contents .title.title--primary {
  font-family: Montserrat;
  font-size: var(--f1);
  font-weight: 400;
  line-height: 38.4px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #4d4d4d;
}

.cart__contents .title.title--primary span {
  font-family: Montserrat;
  font-size: var(--f3);
  font-weight: 400;
  /* line-height: 19.2px; */
  letter-spacing: 0.03em;
  text-align: left;
  margin-left: 10px;
  color: #ac6f64;
}

.cart__contents .cart-item__details .cart-item__name {
  font-family: "Montserrat";
  font-size: var(--f3);
  font-weight: 700;
  /* line-height: 19.2px; */
  text-align: left;
  @media (max-width:749px){
    font-size:14px;
    margin-bottom:10px;
  }
}

.cart__contents .cart-item__details > * {
  max-width: 100%;
}

.cart__contents .cart-item__details dl {
  display: flex;
  align-items: center;
  column-gap: 30px;
  font-family: Montserrat;
  font-size: var(--f7);
  font-weight: 700;
  line-height: 16.8px;
  text-align: left;
  color: #000;
  @media (max-width:1300px){
    flex-wrap:wrap;
     gap:10px;
   }
  

  @media (max-width:749px){
   flex-wrap:wrap;
    column-gap:25px;
    row-gap:10px;
  }
  
}
.cart__contents .cart-item__details dl dd {
  border: 1px solid #cecece;
  padding: 5px 10px;
   @media (max-width:600px){
  padding:2px 8px;
  }
}

.cart__contents .cart-item__details  .messege-properties{
  flex-direction:column;
  align-items:flex-start;

}

.cart__contents .cart-item__details  .messege-properties  .messege-custom dd{
    border:none;
    font-weight:400;
    font-size:var(--f7);
  padding:0;
}




.quantity:after {
  min-height: 20px;
  box-shadow: none;
}

.quantity {margin-left:10px;
  border: 1px solid #cecece;
  min-height: var(--f3);
   @media (max-width:600px){
    max-height:30px;
     width:120px !important;
     margin-left:5px;
  }
}

.quantity .quantity__input {
  padding: 5px 0;
  background-color: #d9d9d9 !important;
}

.quantity .quantity__input,
.quantity .quantity__button {
  font-family: Montserrat;
  font-size: var(--f7);
  font-weight: 700;
  /* line-height: 16.8px; */
  text-align: center;

     @media (max-width:600px){
  
     width:40px !important;
  }
}

.custom-cart-section {
  display: flex;
  justify-content: center;
  gap: 20px;

  @media(max-width:1080px){
    flex-direction:column;
  }
}

.custom-cart-section .cart__footer,
.custom-cart-section .cart__contents {
  padding: 20px;
  box-shadow: 0px 4px 40px 0px #00000033;
}
.custom-cart-section .cart__contents hr{
  margin:0;
}

.custom-cart-section .cart-left {
  width: 70%;
   @media(max-width:1080px){
   width:100%;
  }
}
.custom-cart-section .cart-right {
  width: 30%;
   @media(max-width:1080px){
width:100%;  }
}

.custom-cart-section .cart-gift {
  margin-bottom: 30px;
}

.custom-cart-section .cart-gift .cart-gift-head {
  background: #fff6f4;
  display: flex;
  align-items: center;
  border: 1px dashed #ac6f64;
  padding: 10px 24px;
  position:relative;
  > h3 {
    margin: 0;
    font-family: Montserrat;
font-size: var(--f4);
font-weight: 700;
/* line-height: 24px; */
letter-spacing: 0.03em;
/* text-align: center; */
    color:#4d4d4d;

  }

  > i{
    position:absolute;
    top:35%;
    right:20px;
    color:#AC6F64;
    
  }
}
.custom-cart-section .cart-gift .cart-gift-body {
  border: 1px dashed #ac6f64;
  border-top: 0px;
  padding: 10px 24px;
  display:none;
  transition:display 0.3s ease;
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 700;
/* line-height: 19.2px; */
letter-spacing: 0.03em;
/* text-align: center; */
  color:#242222;
  >span{
    color:#AC6F64;
  }

}

.custom-cart-section .cart-gift .cart-gift-active{
  display:block;
}

.custom-cart-section .cart-item{
  border-bottom: .1rem solid rgba(var(--color-foreground), .08);
}

@media (min-width:1000px){
  .custom-cart-section .cart-item   .cart-item__totals{
  padding-right:50px;
}
}

@media screen and (max-width: 992px) {
    .cart-item {
        grid-template-columns: 0.8fr 2fr !important;
        display: grid;
      margin-top:2rem;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }
}


.custom-cart-section .cart-item   .cart-item__totals .price{
  white-space:nowrap;
  font-family: Montserrat;
font-size: var(--f4);
font-weight: 700;
line-height: 24px;
text-align: right;
  color:#000;

}



.custom-cart-section .cart-item   .cart-item__totals .cart-item__old-price{
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 700;
line-height: 19.2px;
text-align: right;
color:#7e7e7e;
}


.custom-cart-section .cart-item  .cart-item__details .discount, .custom-cart-section .cart-item  .cart-item__details .in-stock{
 font-family: Montserrat;
font-size: var(--f7);
font-weight: 700;
line-height: 16.8px;
text-align: left;
  color:#000;

}

@media (max-width:600px){
   .custom-cart-section .cart-item  .cart-item__details .in-stock{
     display:none;
   }
}


.custom-cart-section .cart-item  .cart-item__details .discount span{
  color:#007CD6;
  text-decoration:underline;
}


.custom-cart-section .cart-item  .cart-item__details .save-delete{    display: flex;
    align-content: center;
    align-items: center;
column-gap:50px;
                                                                  row-gap:10px;
                                                                  margin-top:15px;
                                                                  @media (max-width:600px){
  flex-direction:column;
  align-items:flex-start;
                                                                    margin-top:0;
                                                                  }
     }
.custom-cart-section .cart-item  .cart-item__details .save-delete .save-for-later{
    display: flex;
    align-content: center;
    align-items: center;
  gap:10px;
   >span{
   font-family: Montserrat;
font-size: var(--f7);
font-weight: 700;
line-height: 16.8px;
text-align: left;
   color:#7e7e7e;

 }
}


.custom-cart-section .cart-item    .compare-at-custom{
  text-decoration:line-through;
  text-align:right;
}


cart-remove-button{  gap:10px;
      display: flex;
    align-items: center;
  margin:0 !important;
  >a{display:flex;
     align-items:center;
     align-content:center;
    min-width:0 !important;
    padding:0 !important;
    min-height:0 !important;
 
                   >svg{width:23px !important;
                     color:#949494 ;
                        height:2.5rem !important;
                   }

 >span{
   font-family: Montserrat;
font-size: var(--f7);
font-weight: 700;
line-height: 16.8px;
text-align: left;
   color:#7e7e7e;
    @media (max-width:600px){
                    display:none;
                   }

 }                  
}


                   @media (max-width:600px){
                     position:absolute;
                     right:0px;
                     bottom:0px;
                   }
                   
                   
 }



.custom-cart-section .cart-left .last-minute-deals{
  margin-top:24px;
padding:20px;
box-shadow: 0px 4px 40px 0px #00000033;
>h3{margin:0;
  font-family: Montserrat;
font-size: var(--f6);
font-weight: 400;
line-height: 28.8px;
text-align: left;
color:#4d4d4d;

  >span{
    font-family: Montserrat;
font-size: var(--f3);
font-weight: 400;
line-height: 38.4px;
letter-spacing: 0.03em;
text-align: left;
  }
  }
}

.custom-cart-section .cart-left .last-minute-deals .card__media{
  width:100%;
}
.custom-cart-section .cart-left .last-minute-deals  .media--transparent{
height:100%;
}
.custom-cart-section .cart-left .last-minute-deals  .card__inner .card__content .card__information{
  display:none;
}
.custom-cart-section .cart-left .last-minute-deals  .card__inner .card__content .card__badge .badge{
  width:max-content;
  right:0px;
}

.custom-cart-section .cart-left .last-minute-deals .custom-trending-product-div {
  max-width:100%;
}

.custom-cart-section .cart-left .last-minute-deals .custom-trending-product-div .slick-arrow {
  height:35px;
  width:35px;
  border-radius:50%;
  top:50%;
  font-size:18px;
  
}

.custom-cart-section .cart-left .last-minute-deals .custom-trending-product-div .slick-prev{
  left:-6px;
} 
.custom-cart-section .cart-left .last-minute-deals .custom-trending-product-div .slick-next{
  right:-11px;
  
}

.last-minute-deals .product-card-div {
    min-height: 425px;
}

/* ///////////////////////////////////////////// Cart Right section CSS /////////////////////////////////////////////////////////////////////// */
.custom-cart-section .cart-right    .cart__footer>* {
        width: 100%;
    }

.custom-cart-section .cart-right    .cart__footer .cart__blocks .summary-title{
  margin:0;
  font-family: Montserrat;
font-size: var(--f6);
font-weight: 400;
/* line-height: 28.8px; */
text-align: left;

  
}

.custom-cart-section .cart-right    .cart__footer .cart__blocks hr{
 margin:0;
}
.custom-cart-section .cart-right    .cart__footer .cart__blocks .line1{
  margin-top:20px;
  margin-bottom:15px;
}

.custom-cart-section .cart-right    .cart__footer .cart__blocks .line2{
  margin-top:10px;
  margin-bottom:10px;
}
.custom-cart-section .cart-right    .cart__footer .cart__blocks .order-details{color:#242222;
                                                                               display:flex;
                                                                               justify-content:space-between;
                                                                               align-items:center;
  >p{margin:0;
    font-family: Montserrat;
font-size: var(--f3);
font-weight: 400;
/* line-height: 19.2px; */
text-align: left;

  }

  >span{
    font-family: Montserrat;
font-size: var(--f3);
font-weight: 500;
/* line-height: 19.2px; */
text-align: right;

  }
}


.custom-cart-section .cart-right    .cart__footer .cart__blocks .checkout-total{margin-top:0;
  color:#242222;
                                                                               display:flex;
                                                                               justify-content:space-between;
                                                                               align-items:center;
  >span{font-family: Montserrat;
font-size: var(--f4);
font-weight: 500;
/* line-height: 25px; */
text-align: left;

    
  }
  
}

.custom-cart-section .cart-right    .cart__footer .cart__blocks  .discount-card{
  background:#ECFFF0;
  padding:10px 5px;
  justify-content:center;
      display: flex;
  flex-wrap:wrap;
    align-content: center;
    align-items: center;
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 400;
/* line-height: 19.2px; */
text-align: left;

  >img{
    margin-right:10px;
  }
  >span{
    font-weight: 500;
  }
}


.cart__checkout-button {border-radius:5px;
      max-width: 100% !important;
                        border:2px solid #AC6F64;
}





/* /////////////////////////////////////// cart coupons////////////////////////////////////// */
.cart-coupon{
  margin-top:24px;
  padding:20px;
  box-shadow: 0px 4px 40px 0px #00000033;

}
.cart-coupon h3{
  
  margin:0;
  margin-bottom:20px;
  font-family: Montserrat;
font-size: var(--f6);
font-weight: 700;
/* line-height: 28.8px; */
text-align: left;
  color:#4D4D4D;

}
.cart-coupon .coupon-input{
  display:flex;
  gap:8px;
flex-wrap:nowrap;
  margin-bottom:20px;
}

.cart-coupon .coupon-input input[title] {
  pointer-events: none;
}
.cart-coupon .coupon-input  input[title]::before {
  content: none !important;
}

.cart-coupon .coupon-input::placeholder{
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 700;
/* line-height: 20px; */
text-align: left;
  color:#422222;
}

.cart-coupon .coupon-input input{
  width:100%;
  outline:none;
  padding:14px 16px;
  border-radius:5px;
  border: 1px solid #AC6F6473;
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 700;
line-height: 20px;
text-align: left;
  color:#242222;

}

.cart-coupon .coupon-input .cart-coupon-btn{
  border:2px solid #AC6F64;
  border-radius:5px;

}

.cart-coupon .coupon-card{
display:flex;
  gap:15px;
  
}
.cart-coupon .coupon-card .left{
  margin-top:10px;
  display:block;
  height:15px;
  width:21px;
  background:#D9D9D9;
  border-radius:50%
}
.cart-coupon .coupon-card .right{
  text-align:left;

  >h6{margin:15px 0 10px 0;
      
    font-family: Montserrat;
font-size: var(--f3);
font-weight: 700;
line-height: 19.2px;
text-align: left;
    color:#242222;

  }

  >p{   
    margin:0px;
    margin-bottom:10px;
       font-family: Montserrat;
font-size: var(--f3);
font-weight: 500;
line-height: 19.2px;
text-align: left;
color:#949494;
  }
}

.cart-coupon .coupon-card .right .code{
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 700;
/* line-height: 20px; */
text-align: left;

 width:fit-content;
  max-height:37px;
  position:relative;
  >p{    padding: 3px 20px;
    margin: 0;  
  }
}


.cart-coupon .coupon-card .right .code img{
  position: absolute;
    z-index: -1;
    height: 35px;
}

.cart-coupon hr{
  margin:10px 0px ;
  
}

.cart-coupon  .show-more{
  cursor:pointer;
  margin:0px;
  font-family: Montserrat;
font-size: var(--f3);
font-weight: 700;
line-height: 19.2px;
text-align: center;
color:#007CD6;
  text-decoration:underline
  
} 




/* /////////////////////////////////////////cart NOTE Custom ///////////////////////////////////// */

.custom-cart-section .cart-right .cart-note-custom{
box-shadow: 0px 4px 40px 0px #00000033;
  margin-top:24px;
  padding:20px;
  

  
}

.custom-cart-section .cart-right .cart-note-custom h3 {
  font-family: Montserrat;
font-size: var(--f4);
font-weight: 400;
line-height: 28.8px;
text-align: left;
  margin:0;
color:#4d4d4d;
}


.custom-cart-section .cart-right .field:after{
  box-shadow:none;
}


.custom-cart-section .cart-right .cart-note-custom .cart__note {
    height: fit-content;
    top: 0.5rem;
}


/* ////////////////////////////////////////////////////////////////footer Policies / privacy policy / About Us /////////////////////////////////////////////////// */

.rte.scroll-trigger{
  font-family: Montserrat;
font-size: var(--f7);
}




/* /////////////////////////////////////////////////////////////Blog Page ///////////////////////////////////////////////////////////////////////////////////////// */
.custom-main-blog{
  max-width:95%;
  margin:0 auto;
}
.blog-grid-container {
    display: grid;
    grid-template-columns:1fr 1fr; 
    grid-template-rows: repeat(3, auto);  
    gap: 15px;  

  @media (max-width:767px){
       grid-template-columns:  1fr; 
  }
}

.blog-grid-container .grid-item {
    /* background-color: #fafafa;            */
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    text-align: center;
  transition:transform 0.3s ease-in-out;


  
}

.blog-grid-container .grid-item .article-card__link svg {
    
        transition:transform 0.3s ease-in-out;
   
}

.blog-grid-container .grid-item:hover  .article-card__link svg {
    
  transform:translateX(10px);
        transition:transform 0.3s ease-in-out;
   
}

.blog-grid-container .grid-item:first-child {
    grid-row: span 2;                    
    grid-column: span 1;  
   @media (max-width:767px){
       grid-row: span 1;     
  }
}

.blog-grid-container .grid-item:first-child .card__inner.color-scheme-1{ 
  min-height:50%;
  
}

.blog-grid-container .grid-item:first-child .card.article-card{
  flex-direction:column !important;
 
}
@media (max-width:767px){
  .blog-grid-container .grid-item .card.article-card{
     flex-direction:column !important; 
  }
      
  }
 


.blog-grid-container .grid-item:first-child  .card__content{
    /* padding: 0  30px !important; */
@media (max-width:767px){
    
  padding: 0 !important;
}
  }
        

.blog-grid-container .grid-item  .card__content{
 @media (max-width:767px){
   min-height:170px;
  max-height:fit-content !important;
 } 
  }





.blog-grid-container .grid-item .article-card__info.caption-with-letter-spacing{
  font-family:lato;
  font-size:8px;
  
  
}

 .blog-grid-container .grid-item .alink_template--17754463404132__main , .alink_template--17754463371364__main{
  color:#ac6f64 !important;
   font-size:16px;
  
}

 .blog-grid-container .grid-item  .article-card__link{
  font-weight:500;
   transition:0.3s ease-in-out;
>a{
  color:#ac6f64
            !important
}
 
   }

.blog-grid-container.right-block{
  grid-template-columns:1fr;
}

.blog-grid-container.right-block .grid-item:first-child .card.article-card{
  flex-direction:row !important;
 
}

.blog-grid-container.right-block .grid-item   .card.article-card .article-card__excerpt{
  display:none;
}

.blog-grid-container.right-block .grid-item {
  height:200px;
}

.blog-grid-container.right-block .grid-item {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height:160px;
  padding:5px;
}

/* // product description css  */
div#description h1{
      margin: 0;
    padding: 0;
    font-size: 25px;
    font-weight: 500;
}

/* instagram section */
.instafeed-lightbox .lightbox-instagram .instafeed-caption{
  line-height: 22px!important;
}


.svg-wrapper{
  display:flex;
}

.comment-form{
  padding: 10px;
}

.article-template__comment-wrapper h2{
  padding-left: 10px;
}




.custom-article-data   {

 .blog-main-heading {
    font-family: 'Montserrat';
    font-size: var(--f4);
  }
  .blog-heading,h4{
     font-family: 'Montserrat';
    font-size: var(--f3);
  }
}

/* chat boat text css  */
#smart-bot-chat-box-container p {
  text-transform: none;
}

.footer-col-lg img{
  width: 195px;
}
.collection-hero__title,.title-wrapper .title{
  font-family: math !important;
}





/* NEW CSS */

#Details-HeaderMenu-5 .goto{
  background-image: linear-gradient(300deg, #fc5015 40%, #ffaf39 56%);-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.quick-add__submit {
  min-width: 50% !important;
  font-size: 12px;
}

.card-buy-now-btn{
  padding: 4px 10px;
}

@media(max-width:1200px){
  .card-buttons-wrapper{
  flex-direction: column;
}
}

body{
  overflow-x: hidden;
}


.menu-drawer__submenu{
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    display:none;
    padding-left:15px;
}

details[open] > .menu-drawer__submenu{
    display:block;
}

.menu-drawer__close-button{
    display:none!important;
}

.submenu-toggle{
    margin-left:auto;
    cursor:pointer;
    display:flex;
    align-items:center;
}

details[open]>.menu-drawer__menu-item .icon-caret{
    transform:rotate(180deg);
}

.icon-caret{
    transition:.3s;
}

.js .menu-drawer__navigation .submenu-open {
  visibility: visile !important;
}

.menu-drawer .icon-caret {
    display: block !important;
    width: 12px;
    height: 12px;
}

.menu-drawer .icon-arrow {
    display: none !important;
}



@media (max-width: 749px) {
    .discover .content {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap:10px;

        .data a h3{
          margin: -2px 0 2px 0;
        }
    }
}

@media (max-width: 749px) {
.bestSelling{
  .grid__item{
    max-width: 160px;

    .color-variants,.custom-color-sec{
      display:none;
    }

    .card__information{
      min-height:50px;
    }

     .card__content .card__heading a {
      font-size:13px;
     }

    .card-buy-now-btn{
      display:none;
    }
  }
  .card--card, .card--standard .card__inner {
    max-height: 200px;
    max-width: 160px;
  }
  .trending-product-div{
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    gap:10px;
  }
}
}




display: none;
  }

  /* Slider wrapper */
  .cus-off-sl.Slider-div {
    width: 100%;
    isolation: isolate;
  }

  /* IMPORTANT: do not force flex here — let Slick control slide positioning */
  .cus-off-sl .slick-track {
    display: flex;
  }
  .cus-off-sl .slick-slide {
    height: auto;
  }
  .cus-off-sl .slick-slide > div {
    width: 100%;
  }

  .cus-off-sl.banner {
    width: 100%;
  }

  /* Dots - bottom center overlay */
  .cus-off-sl .slick-dots {
    display: flex !important;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1;
  }
  .cus-off-sl .slick-dots li {
    display: inline-block !important;
    margin: 0;
    width: auto;
    height: auto;
  }
  .cus-off-sl .slick-dots li button {
    font-size: 0 !important;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
  }
  .cus-off-sl .slick-dots li.slick-active button {
    background: #d1477a;
    transform: scale(1.2);
  }
  @media (min-width: 992px) {
    .cus-off-sl.slick-slider .slick-dots {
      display: flex !important;
    }
  }

  /* Arrows - hide text, keep icon */
  .cus-off-sl .slick-arrow.slick-prev,
  .cus-off-sl .slick-arrow.slick-next {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7) !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0 !important;
    color: transparent !important;
  }
  .cus-off-sl .slick-prev {
    left: 20px;
  }
  .cus-off-sl .slick-next {
    right: 20px;
  }
  .cus-off-sl .slick-arrow::before {
    display: block !important;
    font-family: initial;
    font-size: 18px !important;
    color: #d1477a !important;
    opacity: 1 !important;
    content: "";
  }
  .cus-off-sl .slick-prev::before {
    content: "\2039";
  }
  .cus-off-sl .slick-next::before {
    content: "\203A";
  }

