/*=============== GOOGLE FONTS ===============*/

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display =swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 43;
  --sat: 85%;
  --first-color: hsl(var(--hue), var(--sat), 57%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;
  /* ========== Colors-product====== */
  --white-light: rgba(255, 255, 255, 0.5);
  --second-color:#e7623d;
  --alice-blue: #fcfcfc;
  --carribean-greem: #efba32;
  --gray: #ededed;
  --shadow-gray: rgb(190, 190, 190);
  --deep-umber: #4a2c1a;
  --Dark-Espresso: #2c1810;
  --dark-blue: #1A1A2E;

  /*========== Font and typography ==========*/
  --title-font: "Great Vibes", cursive;
  --body-font: "Josefin Sans", sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /* typography */
  --Normal-m:16px;
        --Normal-d:24px;
        --Normal-t:20px;
        --h1-m:35px;
        --h1-d:60px;
        --h1-t:43px;
        --h2-m:28px;
        --h2-d:48px;
        --h2-t:34px;
        --h3-m: 24px;
        --h3-d: 40px;
        --h3-t: 32px;        
        --cap-d:16px;
        --cap-t:12px;
        --cap-m:12px;
        /* line-height*/
        --Normal-l-m:25.888px;
        --Normal-l-d:39.68px;
        --Normal-l-t:32px;
        --h1-l-m:57.6px;
        --h1-l-d:92.16px;
        --h1-l-t:76.8px;
        --h2-l-m:43.2px;
        --h2-l-d:69.12px;
        --h2-l-t:57.6px;
        --h3-l-m:28.8px;
        --h3-l-d:46.08px;
        --h3-l-t:38.4px;        
        --cap-l-m:25.888px;
        --cap-l-d:39.68px;
        --cap-l-t:32px;
        /* font-weight */
        --Normal-w-m:400;
        --Normal-w-d:700;
        --Normal-w-t:400;
        --h1-w-m:400;
        --h1-w-d:600;
        --h1-w-t:400;
        --h2-w-m:400;
        --h2-w-d:600;
        --h2-w-t:400;
        --h3-w-m:400;
        --h3-w-d:600;
        --h3-w-t:400;  
        --cap-w-m:400;
        --cap-w-d:700;
        --cap-w-t:400;

        --gap:12px
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;

}
/* Change the default link color */
a {
  color: var(--title-color); /* Replace 'blue' with your desired color */
  text-decoration: underline;
}

/* Change the color when the link is hovered over */
a:hover {
  color: var(--carribean-greem); /* Replace 'red' with your desired hover color */
   text-decoration: none;
}

/* Change the color of visited links */
a:visited {
  color: var(--title-color); /* Replace 'purple' with your desired visited color */
 
}

/* Change the color of active links (when clicked) */
a:active {
  color: var(--second-color); /* Replace 'green' with your desired active color */
}


html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== Product-list-page Text ========= */
.lg-title,
.md-title,
.sm-title {
  font-family: var(--body-font);
  padding: 0.6rem 0;
  text-transform: capitalize;
}

.lg-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  padding: 1.3rem 0;
  opacity: 0.9;
}

.md-title {
  font-size: 2rem;
  font-family: var(--body-font);
}

.sm-title {
  font-family: var(--body-font);
  font-weight: var(--h3-w-d); 
  font-size: var(--h3-d);
  line-height: var(--h3-l-d);
  color: #000;
  padding: 0;
  /* text-transform: uppercase; */
}
.sm-title a{
  text-decoration: none;
  color: #000;
}
#half-product-description p,#half-product-description h2,#half-product-description h1,#half-product-description h3{
  font-size: var(--cap-d);
  line-height: var(--cap-l-d);
  font-weight: var(--cap-w-d);
  color: #000;
  padding: 0;
  margin: 0;
}
.text-light {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.5;
  margin: 0.4rem 0;
  height: 20h;
  text-align: center;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container .section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
}


/*=============== LAYOUT ===============*/
.container {
  max-width: 1200px;
  min-width: 200px;
  padding-left: 0px;
  padding-right: 0px;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: .4s;
}

/*=============== NAV ===============*/
.navigation {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {

  .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__menu {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

}
.nav__img,
.main_logo {
  width: 32px;
  border-radius: 50%;
}

.main_logo {
  width: 128px;
  height: 32px;
  border-radius: 0% !important; 
}

.nav__logo {
  color: var(--title-color);
  font-weight: 600;
}


.nav__list,
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
  margin: 0 !important;
  padding: 0 !important;
}

.nav__name {
  font-size: var(--tiny-font-size);
  /* display: none;*/
  /* Minimalist design, hidden labels */
}

.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: var(--first-color);
  transition: .3s;
}

/* main_Footer starts */

.footer,
footer:before,
footer:after {
  box-sizing: border-box;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 15px;
  color: #2f2f2f;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  margin-top: 10px;
}

.footer>* {
  flex: 1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  /* font-family: 'Pacifico', cursive; */
  font-family: var(--body-font);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 18px;
  font-weight: 600;
}

.nav__title {
  font-weight: 400;
  font-size: 15px;
}

.footer address {
  font-style: normal;
  color: var(--text-color);
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
}

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

.footer li , .footer li .h1, .footer li .h2,.footer li .h3,.footer li .h4,.footer li .h5,.footer li .h6,.footer li h2.nav__title{
  line-height: 2em !important;
  margin-block: revert;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
}

.footer__nav>* {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul a {
  color: var(--text-color);
}

.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}

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

.heart {
  color: #2f2f2f;
}

.quote-container {
  text-align: center;
  font-family: var(--title-font);
  font-size: 4vw;
}

/* main_Footer ends */

/* Minimalist design, active link */
/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

/* ==========dropdown style========= */

/* ----------------- Dropdown Styles ----------------- */
.dropdown-container {
  display: inline-block;
  padding: 10px;
}

.dropdown-container .dropdown {
  position: relative;
}

.dropdown-container .dropdown[open] .with-down-arrow::after {
  content: "\e5c7";
}

.dropdown-container .dropdown[open] summary {
  background: #fff 10;
}

.dropdown-container .dropdown summary {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 6px;
}

.dropdown-container .dropdown summary.avatar {
  border-radius: 50px;
}

.dropdown-container .dropdown summary.avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: inline-block;
  margin: 0;
}

.dropdown-container .dropdown summary .with-down-arrow {
  display: inline-flex;
  padding: 5px;
  align-items: center;
  color: #fff;
  line-height: 1;
}

.dropdown-container .dropdown summary .with-down-arrow::after {
  content: "\e5c5";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.dropdown-container .dropdown.left ul {
  left: 0;
}

.dropdown-container .dropdown.right ul {
  right: 0;
}

.dropdown-container .dropdown ul {
  padding: 0;
  margin: 0;
  box-shadow: 0 0 10px #000 30;
  min-width: max-content;
  position: absolute;
  top: 100%;
  border-radius: 10px;

  z-index: 2;
}

.dropdown-container .dropdown ul li {
  list-style-type: none;
  display: block;
  /* If you use divider & borders, it's best to use top borders */
  /*border-top: 1px solid #ccc;
   */
}

.dropdown-container .dropdown ul li:first-of-type {
  border: none;

}

.dropdown-container .dropdown ul li p {
  padding: 10px 15px;
  margin: 0;
}

.dropdown-container .dropdown ul li a {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  padding: 10px 15px;
  text-decoration: none;
  line-height: 1;
  color: #FFFFFF;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.dropdown-container .dropdown ul li a:hover {
  color: var(--carribean-greem);
}

.dropdown-container .dropdown ul li:first-of-type {
  border-radius: 10px 10px 0 0;
}

.dropdown-container .dropdown ul li:last-of-type {
  border-radius: 0 0 10px 10px;
}

.dropdown-container .dropdown ul li.divider {
  border: none;
  border-bottom: 1px solid #333;
  /* * removes border from Li after the divider element * best used in combination with top borders on other LIs */
}

.dropdown-container .dropdown ul li.divider~li {
  border: none;
}
.half-description ul,.half-description ol ,.full-description ul,.full-description ol{
  padding: 0 14px;
}
/* ==========dropdown--End--Style========= */

.promise_text{
  background-color: #efba323d;
    padding: 10px 12px;
    border-radius: 6px;
    line-height: 1.2rem;
    margin: 12px 0;
}
.promise_text i {
  color: var(--dark-blue);
  
  
  
}

/* =========== Product-List-page-style ========= */
.products-row {
  background: var(--body-color);
  padding: 3.5rem 0;
}

.products-row .text-light {
  text-align: center;
  width: 70%;
  margin: 0.9rem auto;
}

.product-single-item {
  margin: 2rem;
  position: relative;
  margin-block-start: 0;
}

.product-single-content {
  /* background: var(--gray); */
  padding: 1.5rem 0.5rem 2rem 0.5rem;
  cursor: pointer;
  transform: translateY(70px);
}
.catalogue-page-heading.onboarding-content{
    justify-content: center;
  }
  .catalogue-page-heading {
    text-align: center;
    max-width: 1200px;
    margin: 20px auto 30px;
    padding: 0 15px;
}


.catalogue-page-heading h1 {
    font-size: var(--cap-d);
    font-weight: 600;
    line-height: 1.3;
    color: #222;
    margin: 0;
    letter-spacing: 0.3px;
}


.product-img {
  background: var(--white-light);
  box-shadow: 0 0 20px 10px var(--white-light);
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  transition: background 0.5s ease;
  
}
.product-img .image_container{
  width: 200px;
  height: 200px;
  border-radius: 8%;
  overflow: hidden;
  box-shadow: 0 12px 15px rgba(0, 0, 0, 0.1);
}

.btn-cart,
.btn-buy {
  background: transparent;
  border: 1px solid;
  padding: 0.8rem 0.3rem;
  width: 125px;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.6s ease-in-out;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 3px 3px 5px var(--shadow-gray);
  transform: translateY(-25px);
  margin: 2% 0%;
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
                 sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
                 "Segoe UI Symbol", "Noto Color Emoji";
    padding: 9px 18px;
    min-width: 155px;

    background: var(--carribean-greem);
    color: #111 !important;

    border: none;
    border-radius: 999px;

    font-size: 16px;
    font-weight: 500;
    text-decoration: none;

    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);

  
}

.btn-cart:hover {
    background: #e7623d;
    color: #fff !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
}

.btn-cart.active {
    background: #F1641E;
    color: #fff !important;

    box-shadow: 0 4px 8px rgba(241, 100, 30, 0.3);
}

.btn-buy {
  background: white;
  border-radius: 1rem 0;
  box-shadow: 0px 3px 5px var(--shadow-gray);
}

.btn-buy:hover {
  background: var(--carribean-greem);
}

.product-single-info {
  background: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 3px 3px 5px var(--shadow-gray);
  height: auto;
}

.product-single-info-top {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "rating price"
    "soldout mrp";

  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
  /* padding-bottom: 10px; */
  /* border-bottom: 1px solid var(--shadow-gray); */
  margin-bottom: 8px;
  margin-block-start: 5px;
  row-gap: 5px;
  position: relative;
  
}

.rating span {
  color: var(--carribean-greem);
}

.product-name {
  color: var(--text-color);
  display: block;
  text-decoration: none;
  font-size: 1rem;

  font-weight: bold;
}

.product-price {
  padding-right: 0.6rem;
  display: inline-block;
}
 .product-single-info-top .product-price.off-price{
  color: green;
 }
 .product-single-info-top .mrp{
  /*grid-area: 2 / span 2 ;*/
  grid-area: mrp;
  align-items: end;
  order: 4;
  text-align: end;
  transform: translateY(-10px);
  font-size: var(--cap-m);
  color: var(--text-color);
 }
 .product-single-info-top .star-rating{
  grid-area: rating;
  order: 1;
  text-align: start;
 }
 .product-single-info-top .product-price{
  grid-area: price;
  order: 2;
  text-align: end;
 }
 .product-single-info-top .sold-out{
  grid-area: soldout;
  order: 3;
 }
 .product-single-info-top .discount-circle {
  position: absolute;
  top: -65PX;
  right: -25px;
  width: 52px;
  height: 52px;
  background: var(--second-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  white-space: pre-line;
  }

.product-price:first-of-type {
  font-family: var(--body-font);
  color: var(--title-color);
  font-size: 16px;
  font-weight: var(--Normal-w-d);
  line-height: var(--Normal-l-d);
  letter-spacing: 0.16px;
  text-align: end;
  margin: 0;
  padding: 0;
  /* margin-top: 5px; */
  width: 100%;
}
.outofstock.availability{
  margin: 0;
}
.product-img img {
  transition: transform 0.6s ease;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 50%; */
  object-position: center;
}

.product-single-item:hover .product-img img {
  transform: scale(1.1);
}

/* .product-single-item:hover .product-img{
    background: var(--carribean-greem);
  } */

.off-info .sm-title {
  background: var(--carribean-greem);
  /* color:  var(--carribean-greem); */
  display: inline-block;
  padding: 0.5rem;
  /* position: absolute; */
  /* bottom:-1;
    left: 0; */
  /* writing-mode: vertical-lr; */
  /* transform: rotate(180deg); */
  /* z-index: 1;
    letter-spacing: 3px;
    cursor: pointer; */
}

.off-info {
  display: flex;
  flex-direction: row-reverse;
  opacity: 1;
  transition: opacity 0.6s ease;
}
h2.sm-title{
  
  font-weight: var(--h3-w-d) - 300; 
  /* font-size: var(--h3-t); */
  font-size: 1em;

  /* line-height: var(--h3-l-t); */
  line-height: 1.4em;
}
.container.section{
  max-width: none;
  margin: 0;
}

/* =================Product Discrption page============== */


.card-wrapper {

  margin-top: 100px;
}

.img-display {
  overflow: hidden;
}

.img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.img-showcase img {
  min-width: 100%;
}

.img-select {
  display: flex;
  max-width: 400px;
}

.img-item {
  margin: 0.3rem;
}

.product-content {
  padding: 2rem 1rem;
}

.product-title {
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.16px;
  position: relative;
  color: #12263a;
  margin: 1rem 0;
  font-family: var(--body-font);
}

.product-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 80px;
  background: var(--text-color);
}


.product-price {

  font-size: 1rem;
  font-weight: 700;
}

.product-price span {
  font-weight: 400;
}

.new-price span {
  color: #256eff;
}

.product-detail h2 {
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 0.6rem;
}

.product-detail p {
  font-size: 0.9rem;
  padding: 0.3rem;
  opacity: 0.8;
}

.product-detail ul {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.product-detail ul li {
  margin: 0;
  list-style: none;
  background: url("/static/img/checked.d10d8f5514a9.png") left center no-repeat;
  background-size: 18px;
  padding-left: 1.7rem;
  margin: 0.4rem 0;
  font-weight: 600;
  opacity: 0.9;
}

.product-detail ul li span {
  font-weight: 400;
}
.purchase-info{
    margin: 0.6rem 0;
    display: flex;
}

.purchase-info input,
.purchase-info .btn {
  border: 1.5px solid #ddd;
  border-radius: 25px;
  text-align: center;
  padding: 0.45rem 0.8rem;
  outline: 0;
  margin-right: 0.2rem;
  margin-bottom: 1rem;
}

.purchase-info .btn {
  cursor: pointer;
  color: #fff;
}
/* .purchase-info .btn:first-of-type{
    background: #256eff;
}
.purchase-info .btn:last-of-type{
    background: #256eff;
} */
.purchase-info .btn:hover{
    opacity: 0.9;
}

/* .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
} */

.sub-header {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.section-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.review-list {
  list-style-type: none;
  padding: 0;
}

.review-item {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  min-width: 160px;
  z-index: 1;
}

.PDP-review-container {
  margin: 10%;
  width: 80%;
}

/* ============PDP-gallery========= */

#thumbnails img,
#main-img {
  box-shadow: 2px 2px 10px 5px #b8b8b8;
  border-radius: 10px;
}

.img-gallery {
  transition: all 0.5s ease;
}

#thumbnails {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#thumbnails img,#thumbnails video {
  width: 100px;
  height: 100px;
  margin: 10px;
  cursor: pointer;
  opacity: 1;
}

#thumbnails img:hover ,#thumbnails video:hover {
  transform: scale(1.05);
}

#main-img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  display: block;
  margin: 20px auto;
}

.hidden {
  opacity: 0;
}

/* ==========PDP-Review======= */
.review_add {
  display: flex;
  justify-content: center;
}

.controls {
  display: flex;
  flex-direction: row;
}

.fields {
  border: none;
}

label {
  font-weight: 300;
  font-size: medium;
}
/* 
textarea,
input {
  border: none;
  resize: none;
  width: 100%;
  padding: 0.2rem;
  color: inherit;
  font-family: inherit;
  line-height: 1.5;
  border-radius: 0.2rem;
  box-shadow: inset 2px 2px 8px rgba(0, 0, 0, 0.3), inset -2px -2px 8px rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.3);
} */

textarea::placeholder,
input::placeholder {
  color: #aaa;
}

textarea:focus,
input:focus {
  outline-color: #ffcc33;

}

.star-rating {
  cursor: pointer;
  margin: 0;
}

.btn-reivew {
  display: flex;
  flex-direction: row;
}

/* ========== end pr */

/* =================Cart_page ================ */

/* ================= CART PAGE ================= */

/* .basket-layout{
    display:grid;
    grid-template-columns:2.2fr 1fr;
    gap:24px;
} */
@media screen and (min-width:769px){

.basket-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:32px;
}

}
.shopping-cart{
    width:100%;
}

.checkout-summary{
    position:sticky;
    top:100px;
}

.shopping-cart{
    background:#fff;
    border-radius:12px;
    padding:20px;
}

.item_cart{
    /* display:grid;
    grid-template-columns:120px 1fr 90px; */
    gap:16px;
    align-items:center;
    padding:24px;
    margin-bottom:20px;
    border:none;
    border-radius:0;
    border-bottom:1px solid #ececec;
    background:#fff;
    box-shadow:none;
    margin:0;
}
@media screen and (min-width:769px){

.item_cart{
    display:grid;
    grid-template-columns:180px 1fr 150px;
    gap:30px;
}

}
.cart-items{
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    overflow:hidden;
}

/* IMAGE */

.image{
    width:120px;
    height:120px;
}

.image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
}

/* DETAILS */

.cart-details{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.description{
    width:auto;
    padding:0;
}

.description h3{
    margin:0;
    font-size:21px;
    font-weight:500;
    color:#222;
}

.description span{
    display:block;
    margin-top:8px;
    font-size:16px;
}

/* QUANTITY */

.quntity-cart{
    margin:0;
}

.button-container-cart{
    display:flex;
    align-items:center;
    width:max-content;
    border:1px solid #ddd;
    border-radius:30px;
    overflow:hidden;
}

.button-container-cart button{
    width:42px;
    height:42px;
    border:none;
    background:#fff;
    cursor:pointer;
    box-shadow:none;
}

.button-container-cart input{
    width:50px;
    text-align:center;
    border:none;
    box-shadow:none;
}

/* ACTIONS */

.buttons{
    display:flex;
    gap:18px;
    width:auto;
    padding:0;
    font-size:15px;
}

.buttons a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

.buttons a:hover{
    text-decoration:underline;
}

/* PRICE */

.cart-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.total-price{
    font-size:42px;
    font-weight:700;
    color:#222;
    text-shadow:0 1px 1px rgba(0,0,0,0.05);
}
/* mobile view */
/* ==========================================
   MOBILE VIEW (0px - 768px)
========================================== */

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

    /* PAGE */

    .basket-layout{
        display:block !important;
        width:100%;
    }

    .shopping-cart{
        width:100%;
        padding:0;
        background:none;
        border-radius:0;
        box-shadow:none;
    }

    .checkout-summary{
        width:100%;
        margin-top:24px;
        position:static;
        top:auto;
    }

    /* PRODUCT CARD */

    .item_cart{
        display:flex !important;
        flex-direction:column;
        gap:16px;
        padding:16px;
        margin-bottom:16px;
        border-radius:12px;
        border:1px solid #e5e5e5;
    }

    /* IMAGE */

    .image{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .image img{
        width:140px;
        height:140px;
        object-fit:cover;
        border-radius:10px;
    }

    /* DETAILS */

    .cart-details{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .description{
        width:100%;
        text-align:left;
    }

    .description h3{
        font-size:22px;
        margin-bottom:6px;
    }

    .description span{
        font-size:15px;
    }

    /* QUANTITY */

    .quntity-cart{
        width:100%;
    }

    .button-container-cart{
        width:150px;
        margin:0;
    }

    .button-container-cart button{
        width:42px;
        height:42px;
    }

    .button-container-cart input{
        width:60px;
        height:42px;
        text-align:center;
    }

    /* BUTTONS */

    .buttons{
        display:flex;
        flex-wrap:wrap;
        gap:15px;
    }

    .buttons a{
        font-size:15px;
    }

    /* PRICE */

    .cart-right{
        width:100%;
        display:flex;
        justify-content:flex-start;
    }

    .total-price{
        font-size:30px;
        font-weight:700;
    }

    /* PAYMENT SUMMARY */

    .payment-methods{
        justify-content:center;
        flex-wrap:wrap;
        gap:10px;
    }

    .payment-methods img{
        width:56px;
        height:auto;
    }

    /* TOTALS */

    .Cart-Total{
        padding:12px 0;
    }

    .Cart-Total h4{
        font-size:16px;
    }

    .Cart-Total .price_color{
        font-size:18px;
    }

    /* CHECKOUT BUTTON */

    #proceedToCheckout,
    #mobileProceedToCheckout{
        width:100%;
        display:block;
        text-align:center;
        padding:14px;
        border-radius:30px;
        margin-top:40px;
    }

    /* PINCODE */

    .form-group{
        width:100%;
    }

    #postcode{
        width:100%;
    }

    /* COUPON */

    #voucher_form_link{
        width:100%;
    }

    #voucher_form_link .btn{
        width:100%;
    }

}
@media (max-width:768px){

    .shopping-cart{
        padding:0 16px;
        box-sizing:border-box;
    }

    .mobile-checkout-top{
        width:100%;
        margin:0;
        padding:0;
    }

    #mobileProceedToCheckout{
        width:100%;
        display:flex;
        justify-content:center;
        align-items:center;
        height:48px;
        padding:0;
        /* margin:16px 0; */
        box-sizing:border-box;
        margin-top:30px;
    }
}
/* ===============Calculate page */

/* Calculate ends */

/* --flatpage-- */
.flag_abouts{
    margin-top: 20px;
}

/* reject notify */
.info-reject-box{
  width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-reject-box .comment-card {
        max-width: 650px;
        line-height: 1.6;
        font-size: inherit;
        color: #3a3a3a;
        position: relative;
        padding: 10px 0;
        margin-bottom: 20px;
    }

   .info-reject-box .comment-card:before,
    .info-reject-box .comment-card:after {
        content: "“";
        font-size: 60px;
        font-family: Georgia, serif;
        position: absolute;
        left: -25px;
        top: -25px;
        color: #ED4337;
    }
   .info-reject-box .comment-card:after {
        content: "”";
        left: auto;
        bottom: -46px;
        top: auto;
        color: #ED4337;
    }

   .info-reject-box .user-info {
        display: flex;
        align-items: center;
        margin-top: 25px; 
    }

   .info-reject-box .avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
        margin-right: 12px;
    }

   .info-reject-box .user-details {
        font-size: 14px;
    }

    .info-reject-box .user-details strong {
        color: #333;
        font-size: 16px;
    }

   

    /* optional dotted background like reference */
   .info-reject-box .background-dots {
        background-image: radial-gradient(transparent 1px, lightblue 1px);
        background-size: 14px 14px;
        padding: 40px;
        border-radius: 12px;
    }


/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
/* ===== PDL ====== */

/* fixed alignment discount circle for mobile  view */
@media (max-width: 768px) {
   .product-single-info-top .discount-circle {
      top: -102PX;
      right: -22px;
      width: 42px;
      height: 42px;
      font-size: 10px;
    }
  }
/* Tablet for Plp */
@media (max-width: 768px) {
    .catalogue-page-heading {
        margin: 15px auto 20px;
    }

    .catalogue-page-heading h1 {
        font-size: var(--cap-t);
    }
}
/* tablet view  */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
  }

  /* ==============Cart_page=========== */
  .shopping-cart {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  /* .item_cart {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  } */

  .image img {
    width: 50%;
    display: inline;
  }

  /* .image,
  .quantity,
  .description {
    width: 100%;
    text-align: center;
    margin: 6px 0;
  } */

  .buttons {
    margin-right: 20px;
  }

  .sm-title{
    font-family: var(--body-font);
    font-weight: var(--h3-w-t);
    font-size: var(--h3-t);
    line-height: var(--h3-l-t);
    margin: 0;
    margin-top: 25px;
    padding: 0;
  }
  #half-product-description p,#half-product-description h2,#half-product-description h1,#half-product-description h3{
    font-size: var(--cap-d);
    line-height: var(--cap-l-d);
    font-weight: var(--cap-w-d);
    color: #000;
  }
  .woot-widget-bubble.woot-elements--right{
    bottom: 70px;
  }
  /* .product-title{
    font-size: 3rem;

    font-weight: 300;
    line-height: var(--h3-l-d);

  } */
}
@media screen and (max-width: 426px){
  .sm-title{
    font-weight: var(--h2-w-m);
    font-size: var(--h2-m);
    line-height: var(--h2-l-m);
  }
  #half-product-description p,#half-product-description h2,#half-product-description h1,#half-product-description h3{
    font-size: var(--Normal-m);
    line-height: var(--Normal-l-m);
    font-weight: var(--Normal-w-m);
    color: #000;
  }
  .product-title{
    font-size: 2rem;
    line-height: var(--Normal-l-d);
  }
  .product-price:first-of-type {
    font-family: var(--body-font);
    color: var(--title-color);
    font-size: 1.2rem;
    font-weight: var(--Normal-w-d);
    /* line-height: var(--Normal-l-d); */
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    padding: 0;
    /* margin-top: 5px; */
    width: 100%;
}
}


@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }

  /* .nav__img {
    display: none;
  } */
  .footer {
    padding-block-end: 40%;
  }

  /* =======PDP-IMG=========== */
  #thumbnails img {
    width: 50px;
    height: 50px;
    opacity: 1;
    pointer-events: none;
  }

  #main-img {
    width: 100%;
  }
}


/* Mobile */
@media (max-width: 480px) {
    .catalogue-page-heading h1 {
        font-size: var(--cap-m);
    }
} 
/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }

  /* .nav__img {
    display: none;
  } */
  .legal .legal__links {
    margin-left: auto;
  }
/* ================new cart page design======================= */
  .row .buttons{
        display: flex;
        width: auto;
        align-items: center;
        justify-content: center;
        padding: 0%;
    }
    .basket-items .price_color{
        color: initial;
    }
    /* .basket-items .item_cart{

    } */
  
    @media (max-width: 480px) {
        
    }
    @media (max-width: 320px) {
        .basket-items{
            padding: 0%;
        }
        .basket-items .row.item_cart{
            padding: 20px 0px;
        }
        
    }



    /* ==========================
   CHECKOUT SUMMARY
========================== */

.checkout-layout{
    display:flex;
    justify-content:flex-end;
    margin:30px 0;
}

.checkout-summary{
    width:100%;
    max-width:420px;
}

.summary-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:24px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    position:sticky;
    top:100px;
}

/* ==========================
   TOTALS
========================== */

.summary-totals{
    margin-bottom:20px;
}

/* Optional: Improve Oscar totals table */

.summary-totals table{
    width:100%;
    border-collapse:collapse;
}

.summary-totals tr{
    border-bottom:1px solid #f2f2f2;
}

.summary-totals td,
.summary-totals th{
    padding:14px 0;
    font-size:16px;
}

.summary-totals tr:last-child td,
.summary-totals tr:last-child th{
    font-size:24px;
    font-weight:700;
    color:#222;
}

/* ==========================
   VOUCHER
========================== */

.voucher-card{
    border-top:1px solid #ececec;
    padding-top:20px;
    margin-top:20px;
}

.voucher-toggle{
    margin:0;
}

.voucher-link{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#222;
    font-weight:600;
}

.voucher-checkbox{
    width:18px;
    height:18px;
}

.voucher-container{
    margin-top:15px;
}

.voucher-form input{
    width:100%;
    height:48px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 14px;
    margin-bottom:12px;
}

.voucher-btn{
    width:100%;
    height:48px;
    border-radius:30px;
    background:#F1641E;
    color:#fff;
    border:none;
    transform:none !important;
    margin:0;
}

.voucher-btn:hover{
    background:#d95518;
}

.voucher-cancel{
    display:block;
    text-align:center;
    margin-top:12px;
    text-decoration:none;
    color:#666;
}

/* ==========================
   DELIVERY
========================== */

.delivery-card{
    border-top:1px solid #ececec;
    padding-top:20px;
    margin-top:20px;
}

.delivery-label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#222;
}

.delivery-input{
    width:100%;
    height:50px;
    border-radius:10px;
    border:1px solid #ddd;
    padding:0 15px;
}

.delivery-input:focus{
    border-color:#F1641E;
    box-shadow:0 0 0 3px rgba(241,100,30,.15);
}

.delivery-error{
    margin-top:10px;
    font-size:14px;
    color:#d32f2f;
}

/* ==========================
   CHECKOUT BUTTON
========================== */

.checkout-button-wrapper{
    margin-top:24px;
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 45px;
    height: 52px;
    width: 100%;

    border-radius: 30px;

    background: #efba34;
    color: #fff !important;

    font-weight: 500;

    cursor: pointer;
    text-decoration: none;

    transition: 0.2s ease;
}

.checkout-btn:hover {
    background: #dc2626;
    color: #fff !important;
}

/* ==========================
   MOBILE
========================== */





/* ================new cart page design======================= */
/* ======================== saved cart desgin============================ */
/*
/* =====================================================
   MOBILE
===================================================== */
/* ==========================
   Saved Items Mobile
========================== */
/* ==========================================
   Saved Items - Mobile
========================================== */

@media (max-width:768px){

    .saved-items{
        margin-top:20px;
    }

    .saved-header{
        margin-bottom:16px;
        padding-bottom:12px;
    }

    .saved-header h2{
        font-size:24px;
    }

    .saved-count{
        font-size:12px;
        padding:5px 12px;
    }

    .saved-items .basket-items{
        margin-bottom:14px;
    }

    /* Card */

    .saved-items .item_cart{
        position:relative;

        display:grid;
        grid-template-columns:80px 1fr;
        grid-template-areas:
            "image description"
            "image actions";

        column-gap:14px;
        row-gap:10px;

        padding:14px;

        border-radius:12px;
    }

    /* Image */

    .saved-items .image{
        grid-area:image;
        width:80px;
        height:80px;
    }

    .saved-items .image img{
        width:100%;
        height:100%;
        object-fit:cover;
        border-radius:8px;
    }

    /* Description */

    .saved-items .description{
        grid-area:description;
        display:flex;
        flex-direction:column;
        gap:6px;
    }

    .saved-items .description span:first-child{
        font-size:16px;
        line-height:1.3;
    }

    .saved-items .description span:last-child{
        font-size:12px;
    }

    /* Right Section */

    .saved-items .saved-right{
        grid-area:actions;

        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:12px;

        width:100%;
    }

    /* Delete */

    .saved-items .buttons{
        position:absolute;
        top:10px;
        right:10px;

        margin:0;
        width:auto;
    }

    .saved-items .buttons a{
        width:30px;
        height:30px;

        display:flex;
        justify-content:center;
        align-items:center;
    }

    /* Price */

    .saved-items .total-price{
        width:100%;
    }

    .saved-items .price_color{
        margin:0;
        font-size:28px;
        font-weight:700;
    }

    /* Button */

   

    .saved-items .btn-cart{
        width:100%;
        height:42px;

        display:flex;
        justify-content:center;
        align-items:center;

        border-radius:22px;

        font-size:14px;
    }

}

/* Hidden on desktop */
.mobile-checkout-top{
    display:none;
}

/* Mobile only */
@media (max-width:768px){

    .mobile-checkout-top{
        display:block;
        width:100%;
        padding:0 16px;
        margin:16px 0;
        box-sizing:border-box;
    }

    #mobileProceedToCheckout{
        display:flex;
        justify-content:center;
        align-items:center;

        width:100%;
        height:48px;

        padding:0;
        margin:0;

        box-sizing:border-box;

        border-radius:28px;

        font-size:15px;
        font-weight:600;

        text-decoration:none;
    }

}

/* ======================== saved cart desgin============================ */
  /* =============PDP-Gallery========= */

}

@media screen and (max-width: 767px) and (min-width: 320px) {
  .footer {
    padding-block-end: 20%;
  }

  /* =======product list page ======*/
  
  .product-single-info {
    text-align: center;
  }

  .product-single-content{
    transform: translateY(80px);
  }
  

  .off-info {
    flex-direction: column;
    align-items: end;
  }

  /* end Plps */
  .page .page_inner{
    margin: 0%;
}
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .section {
    padding: .5rem 0 2rem;
  }

  .navigation {
    height: calc(var(--header-height) + 1.5rem);
    /* 4.5rem */
  }

  /* .nav__img {
    display: none;
  } */
  /* .nav__icon {
    display: none;
  } */

  .nav__name {
    font-size: var(--normal-font-size);
    /* display: block; */
    /* Minimalist design, visible labels */
  }

  .nav__link:hover {
    color: var(--first-color);
  }

  /* First design, remove if you choose the minimalist design */
  .active-link::before {
    content: '';
    position: absolute;
    bottom: -.75rem;
    width: 4px;
    height: 4px;
    background-color: var(--first-color);
    border-radius: 50%;
  }

  /* Minimalist design */
  /* .active-link::before{
      bottom: -.75rem;
  } */
  /* main-footer */

  .footer__nav>* {
    flex: 1;
  }

  .nav__item--extra {
    flex-grow: 2;
  }

  .footer__addr {
    flex: 1 0px;
  }

  .footer__nav {
    flex: 2 0px;
  }

  /* ====== product list ====== */
  .product-items {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(2, 1fr);
  }

  /* end-Plps */

  /* =====PDP-page========== */
  .reviews-container {
    max-width: 768px;
    margin: 0 auto;
  }

  .reviews-container {
    max-width: 768px;
    margin: 0 auto;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    align-self: center;

  }
  .nav__img, .main_logo{
    margin-left: 10px;
  }

  /* ======= product List page ========  */
  .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .product-single-item {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .products-row .text-light {
    width: 50%;
  }

  /* end-Plps */
  /* .nav__img {
    display: none;
  }                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               */
  /* ==========Pdp-page======== */
  .PDP-card {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    padding: 0% 10%;
    align-items: flex-start;
  }

  .card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .product-imgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 100px;
    align-items: flex-end;
  }

  .product-content {
    padding-top: 0;
  }

  .customize-Name {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width:1336px) {
  .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}


/* 
@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
} */

/* @media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  } 
  
  .nav__item--extra {
    flex-grow: 2;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
} */
.gallery-image img {
  width: 100px;
  height: 75px;
}

/* {% comment %} payment methods {% endcomment %} */
.payment-methods{
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #ececec;
}

.payment-methods h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:16px;
}

.payment-icons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

.payment-card{
    width:60px;
    height:38px;
    min-width:60px;
    max-width:60px;
    max-height:38px;
    border:1px solid #e0e0e0;
    border-radius:6px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    padding:4px;
    box-sizing:border-box;
    overflow:hidden;
}

.payment-card img{
    max-width:48px;
    max-height:26px;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
}

/* =======saved cart design======= */
/* =========================================================
   SAVED ITEMS
========================================================= */

.card-body-new{
    margin-top:40px;
    padding:28px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* ================= Header ================= */

.saved-header-new{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    padding-bottom:18px;
    border-bottom:1px solid #ededed;
}

.saved-header-new h2{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#222;
    letter-spacing:-.4px;
}

.saved-count{
    background:#efba34;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

/* ================= List ================= */

.saved-items-new{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.saved-item-new{
    width:100%;
}

/* ================= Card ================= */

.saved-card-new{

    position:relative;

    display:grid;

    grid-template-columns:110px minmax(0,1fr) 220px;

    gap:22px;

    align-items:center;

    padding:20px;

    border:1px solid #ededed;

    border-radius:16px;

    background:#fff;

    transition:.25s;
    margin-bottom: 15px;
}

.saved-card-new:hover{

    transform:translateY(-2px);

    border-color:#F1641E40;

    box-shadow:0 12px 28px rgba(0,0,0,.07);

}

/* ================= Image ================= */

.image-new{

    width:110px;

    height:110px;

    overflow:hidden;

    border-radius:12px;

    background:#f7f7f7;
}

.image-new img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.3s;
}

.saved-card-new:hover img{

    transform:scale(1.04);

}

/* ================= Description ================= */

.description-new{

    display:flex;

    flex-direction:column;

    gap:10px;
}

.description-new span:first-child{

    font-size:18px;

    font-weight:500;

    color:#222;

    line-height:1.4;
}

.description-new span:last-child{

    width:max-content;

    background:#ecf9ef;

    color:#238636;

    padding:6px 14px;

    border-radius:25px;

    font-size:12px;

    font-weight:500;
}

/* ================= Right ================= */

.saved-right-new{

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    align-items:flex-end;

    height:110px;
}

/* Delete */

.buttons-new{

    width:100%;

    display:flex;

    justify-content:flex-end;
}

.delete-btn-new{

    width:34px;

    height:34px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    color:#666;

    background:#fff;

    border:1px solid #e7e7e7;

    transition:.2s;
}

.delete-btn-new:hover{

    background:#F1641E;

    color:#fff;

    border-color:#F1641E;

}

/* Price */

.total-price-new{

    width:100%;

    display:flex;

    justify-content:flex-end;
}

.price_color-new{

    margin:0;

    font-size:22px;

    font-weight:500;

    color:#222;

    letter-spacing:-.4px;
}

/* Button */

.btn-move-new{

    width:100%;

    display:flex;

    justify-content:flex-end;
}

.btn-cart-new{

    width:140px;

    height:32px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    border-radius:24px;

    background:#efba34;

    color:#fff;

    text-decoration:none;

    font-size:13px;

    font-weight:500;

    border:none;

    transition:.2s;
}

.btn-cart-new:hover{

    background:#e7623d;

    color:#fff;

    text-decoration:none;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

.card-body-new{

    padding:18px;

    border-radius:14px;

    margin-top:20px;
}

/* Header */

.saved-header-new{

    margin-bottom:18px;

    padding-bottom:14px;
}

.saved-header-new h2{
    font-size:18px;
}

.saved-count{
    font-size:10px;
    padding:4px 10px;
}

/* Card */

.saved-card-new{
    position:relative;

    display:grid;

    grid-template-columns:60px 1fr;

    grid-template-areas:
        "image description"
        "image price"
        "button button";

    column-gap:12px;
    row-gap:8px;

    padding:10px;
    margin-bottom: 15px;
    border-radius:12px;
}

/* Image */

.image-new{
    grid-area:image;

    width:60px;
    height:60px;
}

.image-new img{
    width:100%;
    height:100%;
    border-radius:8px;
}

/* Product */

.description-new{
    grid-area:description;
    gap:4px;
}

.description-new span:first-child{
    font-size:14px;
    font-weight:600;
    line-height:1.3;
}

.description-new span:last-child{
    font-size:10px;
    padding:3px 8px;
    border-radius:12px;
}

/* Right */

.saved-right-new{
    display:contents;
}

/* Delete */

.buttons-new{
    position:absolute;
    top:8px;
    right:8px;
}

.delete-btn-new{
    width:24px;
    height:24px;
    font-size:12px;
}

/* Price */

.total-price-new{
    grid-area:price;
    justify-content:flex-start;
}

.price_color-new{
    margin:0;
    font-size:20px;
    font-weight:700;
    line-height:1;
}

/* Button */

.btn-move-new{
    grid-area:button;
    width:100%;
    margin-top:2px;
}

.btn-cart-new{
    width:100%;
    height:36px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;

    font-size:12px;
    font-weight:600;

    border-radius:18px;
}

}

/* empty basket */
/*=========================================
    Premium Empty Basket
=========================================*/

.empty-basket-premium{

    max-width:560px;

    margin:45px auto;

    padding:36px 30px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    text-align:center;

    box-shadow:
    0 6px 20px rgba(0,0,0,.04);

}

/* Icon */

.empty-icon-premium{

    width:70px;
    height:70px;

    margin:0 auto 16px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#FFF4ED;

    color:#F1641E;

    font-size:28px;
}

/* Tag */

.empty-tag{

    display:inline-block;

    padding:5px 14px;

    margin-bottom:16px;

    background:#FFF4ED;

    color:#F1641E;

    border-radius:20px;

    font-size:11px;

    font-weight:700;

    letter-spacing:.4px;
}

/* Title */

.empty-basket-premium h2{

    margin:0 0 12px;

    font-size:28px;

    font-weight:700;

    color:#222;
}

/* Text */

.empty-basket-premium p{

    margin:0 auto 24px;

    max-width:360px;

    font-size:15px;

    line-height:1.6;

    color:#666;
}

/* Button */

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 220px;
    height: 44px;

    border-radius: 24px;

    background: var(--carribean-greem);
    color: #fff !important;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: background 0.2s ease;
}

.continue-shopping-btn:hover {
    background: #dc2626;
    color: #fff !important;
    text-decoration: none;
}

/*=========================================
            Mobile
=========================================*/

@media(max-width:768px){

.empty-basket-premium{

    max-width:100%;

    margin:20px 12px;

    padding:26px 18px;

    border-radius:14px;
}

.empty-icon-premium{

    width:56px;
    height:56px;

    font-size:22px;

    margin-bottom:14px;
}

.empty-tag{

    font-size:10px;

    padding:4px 10px;

    margin-bottom:12px;
}

.empty-basket-premium h2{

    font-size:22px;

    margin-bottom:10px;
}

.empty-basket-premium p{

    font-size:13px;

    margin-bottom:20px;
}

.continue-shopping-btn{

    width:100%;

    height:42px;

    font-size:13px;

    border-radius:22px;
}

}


/* upsellling & warnings */
/*==================================================
            Basket Messages
==================================================*/

.basket-warning-box,
.basket-offer-box{

    margin:0 0 28px;

    padding:22px;

    background:#fff;

    border-radius:18px;

    border:1px solid #ececec;

    box-shadow:0 6px 18px rgba(0,0,0,.04);

}

/* Header */

.message-header{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:18px;
}

.message-icon{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    flex-shrink:0;

    font-size:20px;
}

/* Warning */

.warning-icon{

    background:#FFF7E5;

    color:#E09A00;
}

/* Offer */

.offer-icon{

    background:#FFF2EB;

    color:#F1641E;
}

.message-header h3{

    margin:0;

    font-size:22px;

    font-weight:700;

    color:#222;
}

.message-header p{

    margin:4px 0 0;

    color:#777;

    font-size:14px;
}

/* List */

.message-list{

    display:flex;

    flex-direction:column;

    gap:12px;
}

/* Item */

.message-item{

    display:flex;

    align-items:flex-start;

    gap:12px;

    padding:14px 16px;

    border-radius:12px;

    background:#fafafa;
}

.warning-item{

    border-left:4px solid #E09A00;
}

.offer-item{

    border-left:4px solid #F1641E;
}

.message-item i{

    margin-top:3px;

    font-size:15px;
}

.warning-item i{

    color:#E09A00;
}

.offer-item i{

    color:#F1641E;
}

.message-item span{

    color:#444;

    line-height:1.6;

    font-size:15px;
}

.offer-item a{

    color:#F1641E;

    font-weight:700;

    text-decoration:none;
}

.offer-item a:hover{

    text-decoration:underline;
}

/*==================================================
                Mobile
==================================================*/

@media(max-width:768px){

.basket-warning-box,
.basket-offer-box{

    padding:16px;

    margin-bottom:18px;

    border-radius:14px;
}

.message-header{

    gap:12px;

    margin-bottom:14px;
}

.message-icon{

    width:42px;

    height:42px;

    font-size:16px;
}

.message-header h3{

    font-size:18px;
}

.message-header p{

    font-size:13px;
}

.message-item{

    padding:12px;

    font-size:13px;

    gap:10px;
}

.message-item span{

    font-size:13px;
}

}