/*=============== 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 */
}

/* 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 {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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 30px;
  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: 15px;
  font-weight: 400;
}

.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;
}

.product-single-content {
  /* background: var(--gray); */
  padding: 3rem 0.5rem 2rem 0.5rem;
  cursor: pointer;
  transform: translateY(70px);
}

.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 {
  background: var(--carribean-greem);
  border-radius: 0 1rem;

}

.btn-cart:hover {
  background: #e7623d;
}

.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: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
  /* padding-bottom: 10px; */
  /* border-bottom: 1px solid var(--shadow-gray); */
  margin-bottom: 8px;
  gap: 8px;
  
}

.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-price:first-of-type {
  font-family: var(--body-font);
  color: green;
  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: #12263a;
}


.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.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 ================ */

.shopping-cart {
  height: auto;
  background: #FFFFFF;
  box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.10);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}


.item_cart {
  padding: 20px 30px;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.item_cart:nth-child(3) {
  border-top: 1px solid #E1E8EE;
  border-bottom: 1px solid #E1E8EE;
}

/* Buttons -  Delete and Like */
.buttons {
  position: relative;
  padding-top: 30px;
  width: 100px;
  display: inherit;
}

.delete-btn {
  display: inline-block;
  cursor: pointer;
  width: 50px;
  height: 60px;
  background: url("/static/img/cart/delete-icn.svg") no-repeat center;

}

.like-btn {
 
  display: inline-block;
  background: url('/static/img/cart/twitter-heart.png');
  width: 60px;
  height: 60px;
  background-size: 2900%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.like-btn:hover {
  top: 10px;
  left: 14px;
  width: 65px;
  height: 65px;
  animation-name: animate;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

.is-active {
  animation-name: animate;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

@keyframes animate {
  0% {
    background-position: left;
  }

  50% {
    background-position: right;
  }

  100% {
    background-position: right;
  }
}

/* Product Image */
/* .image {
  margin-right: 50px;
} */

/* Product Description */
.description {
  padding-top: 10px;
  width: 400px;
}

.description span {

  font-size: 14px;
  color: #43484D;
  font-weight: 400;
}

.description span:first-child {
  margin-bottom: 5px;
}

.description span:last-child {
  font-weight: 300;
  margin-top: 8px;
  color: #86939E;
}

/* Product Quantity */
.quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.quantity input {

  border: none;
  text-align: center;
  width: 50px;
  font-size: 16px;
  color: #43484D;
  font-weight: 300;
  margin: 3%;
}

.minus-btn img {
  margin-bottom: 3px;
  width: auto;
  display: inline;
}

.plus-btn img {
  margin-top: 2px;
  width: auto;
  display: inline;
}

button:focus,
input:focus {
  outline: 0;
}

/* Total Price */
.total-price {
  width: 83px;
  padding-top: 27px;
  text-align: center;
  font-size: 16px;
  color: #43484D;
  font-weight: 300;
}

.button-container-cart {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.button-container-cart button {
  width: 50px;
  cursor: pointer;
  background: white;
  border-radius: 1rem 0;
  box-shadow: 0px 3px 5px var(--shadow-gray);
}

.button-container-cart button:hover {
  background: var(--carribean-greem);
}

.shopping-cart .item_cart {
  box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.10);
}
/* ===============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 */

/* 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: green;
    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%;
  }
}

/* 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;
  }

  /* =============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: 3rem 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;
}