/* Shop Cards */

.card-box {
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 4.11px 0px #00000040;
    position: relative;
    padding: 40px 40px;
    border-radius: 6px;
    box-shadow: 3px 3px 7px #0000005e;
    transition: all .4s ease-in-out;
}



.card-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    clip-path: polygon(49% 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 6px;
}

.card-content h3 {
    color: var(--c3);
    font-weight: 600;
    font-size: 26px;
}

.card-content p {
    color: var(--c3);
    font-weight: 500;
    line-height: 22px;
    padding-right: 90px;
    margin: 14px 0px;
}

.card-shop-content h3 {
    color: var(--c3);
    font-weight: 600;
    padding-top: 15px;
}

.shop-shape-box {
    background-size: cover;
    background-position: center;
    padding: 30px 30px;
    overflow: hidden;
    border-radius: 8px;
    transition: all .4s ease-in-out;
}

.shop-shape-circle-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid var(--c3);
}

.discount-box {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    padding: 30px 30px;
    position: relative;
    transition: all .4s ease-in-out;
}

.discount-content h2 {
    color: var(--c2);
    font-weight: 600;
}

.discount-content p {
    color: var(--c2);
}

.discount-content {
    width: 50%;
}

.card-shop-content p {
    padding: 10px 0px;
}

.discount-content p {
    padding: 8px 0px;
    line-height: 22px;
}


.card-box:hover {
    box-shadow: 5px 5px 10px #000000e0;
    transform: translate(-6px, -4px);
}

.shop-shape-box:hover {
     box-shadow: 5px 5px 10px #000000e0;
    transform: translate(-6px, -4px);
}

.discount-box:hover {
    box-shadow: 5px 5px 10px #000000e0;
    transform: translate(-6px, -4px);
}


/* ___BUTTON_ANIMATION____ */

.dswipe {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.6s ease-in-out;
	margin-bottom:-17px;
}
.dswipe::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 50px solid var(--c3) ; 
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: -1; 
}
.dswipe:hover {
  color:var(--c2) !important;
  box-shadow: 0px 0px 4px #000000;
}
.dswipe:hover::before {
  transform: translateX(0);
}

/* _____ */

/************************************/
/***       Loader         	  ***/
/************************************/ 

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--c4);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid var(--c1);
  border-color: var(--c1) var(--c1) transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 3px solid;
  box-sizing: border-box;
}
.loader::after {
  width: 58px;
  height: 58px;
  border-color: transparent transparent var(--c3) var(--c3);
  animation: rotationBack 0.5s linear infinite;
}
.loader::before {
  width: 48px;
  height: 48px;
  border-color: var(--c1) var(--c1) transparent transparent;
  animation: rotation 1.5s linear infinite;
}
@keyframes rotation {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotationBack {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}



.navigation nav ul li a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.navigation nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color:rgba(0, 0, 0, 0.705);
  width: 0%;
  transition: width 0.3s ease;
}

.navigation nav ul li a:hover::after {
  width: 100%;
  animation: heartbeat116 1.5s ease-in-out 0.3s infinite;
}

@keyframes heartbeat116 {
  0%, 100% {
    width: 100%;
  }
  50% {
    width: 60%;
  }
}
.f-links ul li, .f-links ul li a {
    transition: all .2s ease-in-out;
    position: relative;
    /* display: flex; */
}
.f-links ul li:hover {
    color: white;
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.603);
    transform: scale(1.1);
}
.f-links ul li a:hover{
    /* color: white; */
    /* font-weight: 300; */
}



.f-links ul li a {
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-bottom: -6px;
}
.f-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color:rgba(219, 219, 219, 0.89);
  width: 0%;
  transition: width 0.3s ease;
}

.f-links ul li a:hover::after {
  width: 100%;
  animation: heartbeat116 1.5s ease-in-out 0.3s infinite;
}

@keyframes heartbeat116 {
  0%, 100% {
    width: 100%;
  }
  50% {
    width: 60%;
  }
}

