:root {
  --white-color: #ffff;
  --backgroundBody-color: #f2f1f1;
  --background-gray-md-color: #c7c7c7;
  --background-gray-light-color: #f0f0f1;
  --background-socket: 201,201,201;
  --black-main-color: 32,32,32;
  --gray-seprator: #d4d4d4;
  --primary-color: 229,81,183;
  --primary-medium-color:236,175,212;
  --primary-light-color:236,175,212;
  --success-color: 76,175,80;
  --secondary-medium-color:79,158,208;
  --gray-md-color: 153,153,153;
  --gray-dark-color: 51,51,51;
  --gray-light-color: 255,229,254;
  --gray-blur-color:255,255,255;
  --menu-height:12rem;
  --phone-menu-height:16rem;
  --gap-small:2rem;
  --gap-md:4rem;
  --gap-lg:6rem;
  --nav-font-light:1.3rem;
  --nav-font-md:1.5rem ;
  --nav-font-lg:2rem ;
  --font-extra-lg: 3.5rem;
  --review-height:60rem; }
  @media (max-width: 37.5em) {
    :root {
      --nav-font-light:2rem;
      --nav-font-md:2.5rem ; } }

.cart {
  display: grid;
  grid-template-columns: [main-start] minmax(75%, 1fr) [main-end price-start] 26.5%;
  padding: 2rem;
  margin-top: var(--menu-height); }
  .cart__mainCont {
    width: 100%;
    height: 100%;
    grid-column: main-start / main-end; }
  .cart__section {
    z-index: 1;
    position: relative;
    width: 100%;
    height: auto;
    background: var(--white-color);
    border-radius: 3.3rem;
    margin: 0 auto;
    padding: 4rem;
    transition: all .2s;
    box-shadow: 6px 9px 16px 2px rgba(0, 0, 0, 0.15); }
  .cart__itemCont {
    width: 100%;
    height: auto;
    margin-top: 3rem;
    display: grid;
    grid-column-gap: 3rem;
    justify-content: space-evenly;
    grid-row-gap: 6rem;
    grid-template-columns: repeat(auto-fit, minmax(20%, 25%)); }
  .cart__item {
    transition: all .2s;
    font-size: var(--nav-font-light);
    position: relative;
    flex: 0 0 25rem;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    padding: 2rem;
    border-radius: 3rem;
    box-shadow: 0 2px 5px rgba(var(--black-main-color), 0.4);
    margin: 1.5rem 1rem; }
    .cart__item--discount {
      position: absolute;
      right: -.2rem;
      top: -1.5rem;
      background-image: url("/../img/discount.svg");
      width: 4rem;
      height: 5rem;
      text-shadow: 0 2px 3px #00000047;
      backdrop-filter: blur(2px);
      font-size: 1.4rem;
      display: flex;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      padding-top: 5%;
      color: white;
      justify-content: center; }
    .cart__item--close {
      position: absolute;
      top: -1rem;
      left: -1rem;
      border-radius: 50%;
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.13);
      width: 4rem;
      height: 4rem;
      display: flex;
      padding-top: 5px;
      transition: all .2s;
      justify-content: center;
      align-items: center;
      color: rgba(var(--black-main-color), 1);
      font-size: 3rem; }
      @supports (backdrop-filter: blur(10px)) {
        .cart__item--close {
          backdrop-filter: blur(3px);
          background: rgba(214, 214, 214, 0.25); } }
    .cart__item--close:hover {
      background: #ff000057;
      color: white; }
  .cart__main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto; }
    .cart__main--header {
      z-index: 0;
      width: 100%;
      padding-right: 3rem;
      display: flex;
      flex-direction: row;
      justify-content: flex-start; }
    .cart__main--header-item {
      outline: none;
      margin-left: 2rem;
      background: var(--white-color);
      box-shadow: -2px -3px 10px rgba(var(--black-main-color), 0.25);
      border-radius: 3rem 3rem 0 0;
      transition: all .2s;
      padding: 1rem 2rem;
      text-shadow: -1px 3px 4px rgba(var(--black-main-color), 0.2); }
      .cart__main--header-item-active {
        background: rgba(var(--primary-light-color), 0.6) !important;
        box-shadow: -2px -2px 4px rgba(var(--black-main-color), 0.25); }
    .cart__main--header-item-active a {
      color: var(--white-color) !important; }
    .cart__main--header-link {
      outline: none;
      transition: all .2s; }
  .cart__price {
    width: 85%;
    padding: 1rem;
    position: sticky;
    top: var(--menu-height);
    left: 0;
    height: max-content;
    border-radius: 3rem;
    box-shadow: 6px 9px 16px 2px rgba(0, 0, 0, 0.15);
    justify-self: center;
    background: var(--white-color); }
  .cart__priceAddress {
    width: 85%;
    padding: 1rem;
    position: relative;
    left: 0;
    height: max-content;
    border-radius: 3rem;
    box-shadow: 6px 9px 16px 2px rgba(0, 0, 0, 0.15);
    justify-self: center;
    background: var(--white-color); }
  .cart__priceRow {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-direction: row-reverse;
    padding-bottom: 1.5rem;
    color: rgba(var(--gray-md-color), 1); }
    .cart__priceRow-discount {
      color: rgba(var(--primary-color), 0.7);
      padding-bottom: 2rem;
      position: relative; }
      .cart__priceRow-discount::after {
        content: '';
        height: 1.3px;
        background: var(--gray-seprator);
        width: 80%;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%); }
    .cart__priceRow-total {
      color: rgba(var(--black-main-color), 1);
      margin-top: 1rem;
      padding-bottom: 3rem; }
  .cart__discountCode {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0 0;
    position: relative;
    padding-bottom: 3rem; }
    .cart__discountCode--input {
      outline: none;
      padding: .5rem 0rem;
      transition: all .2s;
      border: none;
      border-bottom: 2px solid rgba(var(--primary-color), 0.7); }
    .cart__discountCode--btn:link, .cart__discountCode--btn:visited {
      border-bottom: 2px solid transparent;
      transition: all .2s; }
    .cart__discountCode--btn:hover, .cart__discountCode--btn:active {
      border-bottom: 2px solid rgba(var(--primary-color), 0.7); }
  .cart__submitPrice {
    position: absolute;
    left: 50%;
    width: 70%;
    font-weight: bold;
    transform: translateX(-50%);
    bottom: -2.5rem;
    text-align: center;
    border: 1px solid white;
    padding: 1.1rem;
    border-radius: 3rem;
    transition: all .2s;
    background: white; }
    @supports (backdrop-filter: blur(20px)) {
      .cart__submitPrice {
        background: rgba(214, 214, 214, 0.25);
        mix-blend-mode: normal;
        backdrop-filter: blur(3px);
        box-shadow: inset 0px 1px 20px 3px rgba(255, 255, 255, 0.2), inset 0px -4px 18px rgba(255, 255, 255, 0.2), inset 0px 4px 100px -48px rgba(255, 255, 255, 0.2); } }
  .cart__submitPrice:hover {
    background: #eb51b74f;
    color: white;
    text-shadow: 0 1px 3px #00000091; }
  .cart__addressDelivery {
    display: grid;
    grid-template-columns: 1fr 45%;
    width: 100%;
    height: 100%; }
    .cart__addressDelivery--btn {
      position: absolute;
      bottom: 1rem;
      left: 4rem; }
    .cart__addressDelivery--address {
      border-left: 2px solid #CCCCCC;
      padding: 0 4rem 1rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      flex: 1;
      position: relative; }
    .cart__addressDelivery--text {
      padding: 3rem 1rem 5rem 0; }
    .cart__addressDelivery--btn {
      transition: all .2s;
      align-self: flex-end; }
    .cart__addressDelivery--btn > span {
      margin-right: .5rem;
      transition: all .2s; }
    .cart__addressDelivery--btn:hover > span {
      left: -.2rem;
      position: relative; }
    .cart__addressDelivery--delivery {
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: flex-start;
      padding: 0 4rem 1rem 0;
      width: 100%; }
    .cart__addressDelivery--deliveryPack {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      margin-top: 3rem; }
    .cart__addressDelivery--details {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-left: auto;
      align-items: flex-start; }
    .cart__addressDelivery--label {
      cursor: pointer;
      width: 2rem;
      height: 2rem;
      background: transparent;
      border: 2px solid rgba(var(--primary-color), 1);
      border-radius: 100%;
      position: relative;
      z-index: 0;
      transition: all 0.2s cubic-bezier(0.67, 0.52, 0.58, 1.59);
      margin-left: 2rem; }
      .cart__addressDelivery--label::after {
        content: '\2714';
        transition: all 0.2s cubic-bezier(0.67, 0.52, 0.58, 1.59);
        color: rgba(var(--primary-color), 1);
        font-size: 2.6rem;
        z-index: 1;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -10%); }
    .cart__addressDelivery--deliveryPack > input:checked ~ .cart__addressDelivery--label::after {
      visibility: visible;
      opacity: 1;
      transform: translate(-45%, -50%); }
    .cart__addressDelivery--btnDetail {
      transition: all .2s; }
    .cart__addressDelivery--btnDetail:hover {
      color: rgba(var(--primary-color), 1); }
    .cart__addressDelivery--icon {
      width: 5rem;
      height: 5rem; }
      .cart__addressDelivery--icon-pishtaz {
        transform: scale(2.7) translateX(-0.2rem);
        width: 5rem;
        height: 5rem; }

.plus-minus {
  display: flex;
  padding-top: 3px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  font-size: 2.2rem;
  width: 70%;
  height: 4.5rem;
  position: absolute;
  bottom: -2rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.11);
  box-sizing: border-box;
  border-radius: 3rem;
  margin: 0 auto; }
  @supports (backdrop-filter: blur(10px)) {
    .plus-minus {
      background: rgba(214, 214, 214, 0.25);
      mix-blend-mode: normal;
      backdrop-filter: blur(5px); } }
  .plus-minus__txt {
    color: rgba(var(--primary-color), 1);
    font-weight: bold; }
  .plus-minus__sign {
    font-size: 3rem;
    transition: all .2s; }
  .plus-minus__sign:hover {
    color: rgba(var(--primary-color), 0.7); }
  .plus-minus__plus {
    position: relative; }
    .plus-minus__plus::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 2rem;
      transform: translateY(-50%);
      height: 58%;
      width: 1.2px;
      margin: 0 1rem;
      background: #d4d4d4; }
  .plus-minus__minus {
    position: relative;
    font-size: 3.5rem; }
    .plus-minus__minus::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 2rem;
      transform: translateY(-50%);
      height: 58%;
      width: 1.2px;
      margin: 0 1rem;
      background: var(--gray-seprator); }

@keyframes truck-animate {
  0% {
    transform: translateX(0); }
  50% {
    transform: translateX(1rem); }
  100% {
    transform: translateX(0); } }

.truck-animate {
  animation: truck-animate 1s linear; }

.buySuccess {
  transition: opacity .5s linear,
 transform .3s linear;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  width: 55rem;
  height: 50vh;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border-radius: 3rem;
  box-shadow: inset 0px 1px 20px 3px rgba(255, 255, 255, 0.6), inset 0px -4px 18px rgba(255, 255, 255, 0.6), inset 0px 4px 100px -48px rgba(255, 255, 255, 0.6); }
  .buySuccess__animate {
    max-height: 60%; }
  .buySuccess__title {
    transition: all 1s; }
  .buySuccess__close {
    position: absolute;
    top: -1rem;
    left: -1rem;
    border-radius: 50%;
    background: #ffb8b8;
    border: 1px solid rgba(0, 0, 0, 0.13);
    width: 4rem;
    height: 4rem;
    display: flex;
    padding-top: 5px;
    transition: all .2s;
    justify-content: center;
    align-items: center;
    color: rgba(var(--black-main-color), 1);
    font-size: 3rem; }
  .buySuccess__close:hover {
    background: rgba(255, 0, 0, 0.8);
    color: white; }
  .buySuccess:target {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }

.aboutUs {
  max-width: 95%;
  position: relative;
  margin: 17.5rem auto 0 auto;
  width: 100rem;
  height: 61vh; }
  .aboutUs__container {
    background-image: linear-gradient(100deg, rgba(229, 81, 183, 0.6) 0%, rgba(229, 81, 183, 0.6) 50%, rgba(255, 255, 255, 0.91) 50%), url("/img/about.jpg");
    min-height: 40rem;
    background-position: center;
    background-size: cover;
    filter: drop-shadow(0px 15px 26px rgba(0, 0, 0, 0.25));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    padding: 2rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .8s ease;
    border-radius: 1.3rem; }
  .aboutUs__about {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 50%;
    padding: 4rem; }
  .aboutUs__title {
    margin-bottom: 3rem; }
  .aboutUs__description {
    line-height: 40px;
    font-size: 1.5rem; }
