
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
  font-family: "Poppins";
  --primary-color-1: hsl(348, 68%, 34%);
  --primary-color-2: hsl(20,94%,34%);
  --primary-color-3: hsl(232,16%,34%);
  --primary-color-4: hsl(0, 0%, 25%);
  --text-area-color: whitesmoke;
  --heading-secondary-color: hsl(0, 0%, 55%);
  --secondary-card-color: whitesmoke;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}
.modal-content {
  background-color: white !important;
  border: transparent !important;
}

.modal-body {
  padding:0 !important;
}
.wheel-card {
  display: flex;
  flex-direction: row;
  width: 800px;
  height: 550px;
  background: #141924;
}

.wheel {
  position: absolute;
  width: 350px;
  height: 350px;
  top: calc(50% - 350px/ 2);
  left: calc(50% - 330px/ 2);
  border-radius: 50%;
  border: 8px solid white;
  margin: -8px;
  box-shadow: 0 0 6px 6px black;
  overflow: hidden;
}

.wheel:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px 10px rgba(0, 0, 0, 0.4) inset;
  z-index: 1;
}
.wheel .inner {
  width: 100%;
  height: 100%;
  transition: 5s;
}
.wheel .inner .slice {
  position: absolute;
  width: 0;
  height: 0;
  left: 125px;
  top: -5px;
  border-width: 180px 50px 0 50px;
  border-style: solid;
  transform-origin: 50% 100%;
}
.wheel .inner .slice .prize {
  position: relative;
  display: block;
  transform: rotateZ(90deg);
  left: 8px;
  text-align: center;
  font-size: 24px;
  margin-top: -160px;
  margin-left: -15px;
  color: white;
  text-shadow: -1px -1px 0 #585651, 1px -1px 0 #585651, -1px 1px 0 #585651, 1px 1px 0 #585651;
}


.slice:nth-child(1) {
  border-color: #16a085 transparent;
  transform: rotate(0deg);
}

.slice:nth-child(2) {
  border-color: #962bc0 transparent;
  transform: rotate(-30deg);
}

.slice:nth-child(3) {
  border-color: #34495e transparent;
  transform: rotate(-60deg);
}

.slice:nth-child(4) {
  border-color: #d35400 transparent;
  transform: rotate(-90deg);
}

.slice:nth-child(5) {
  border-color: #f39c12 transparent;
  transform: rotate(-120deg);
}

.slice:nth-child(6) {
  border-color: #c02b58 transparent;
  transform: rotate(-150deg);
}

.slice:nth-child(7) {
  border-color: #2980b9 transparent;
  transform: rotate(-180deg);
}

.slice:nth-child(8) {
  border-color: #50c556 transparent;
  transform: rotate(-210deg);
}

.slice:nth-child(9) {
  border-color: #d31313 transparent;
  transform: rotate(-240deg);
}

.slice:nth-child(10) {
  border-color: #800055 transparent;
  transform: rotate(-270deg);
}

.slice:nth-child(11) {
  border-color: #c2b503 transparent;
  transform: rotate(-300deg);
}

.slice:nth-child(12) {
  border-color: #008000 transparent;
  transform: rotate(-330deg);
}

.wheel-outer {
  position: absolute;
  width: 500px;
  height: 500px;
  top: calc(50% - 500px/ 2);
  left: calc(50% - 500px/ 2);
  border-radius: 50%;
  box-shadow: 0 0 2px 2px white, 0 0 115px 101px rgba(58, 68, 89, 0.1) inset;
}
.wheel-outer h1 {
  position: absolute;
  color: #b02a37 !important;
  font-size:34px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
  top: calc(26% - 400px / 2);
  left: calc(16% - 100px / 2);
}

.kupon-row{
  display: flex;
  align-items: center;
  margin: 25px auto;
  width: fit-content;

}
#spin-code{
  border: 1px dashed #b02a37;
  padding: 10px 20px;
  border-right: 0;

}
@media (max-width: 768px) {
  #spin-code{
    color: white;
  
  }
}
#spin-buton{
  border: 1px solid #b02a37;
  background: #b02a37;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
}



#svg-arrow {
  position: absolute;
  top: calc(50% - 235px);
  left: calc(50% - 101px);
  z-index: 1;
}

#svg-dotted {
  position: absolute;
  width: 540px;
  height: 540px;
  top: calc(50% - 540px/ 2);
  left: calc(50% - 540px/ 2);
}
#svg-dotted #circle-dotted {
  fill: transparent;
  stroke: #c8c8c8;
  stroke-width: 4;
  stroke-dasharray: 0.1 23;
  stroke-dashoffset: 19.5;
  stroke-linecap: round;
}

#app .app-button {
  position: absolute;
  width: 65px;
  height: 65px;
  top: calc(50% - 70px/ 2);
  left: calc(50% - 70px/ 2);
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: 0 0 5px 2px black;
  z-index: 10;
  background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 30%, #b3bead 100%);
}
#app .app-button:active {
  transform: scale(0.9);
}
#app{
  padding: 350px;
  position: relative;
  background: white;
  transform: translateX(-150px);
  border-radius: 3%;
}

#app .kod {
  position: absolute;
  top: calc(50% + 500px / 2);
  left: calc(50% - 220px / 2);
}

@media (max-width: 768px) {
 
  .wheel-outer {
    position: absolute;
    width: 360px;
    height: 360px;
    top: calc(50% - 376px/ 2);
    left: calc(50% - 356px/ 2);
    border-radius: 50%;
    box-shadow: 0 0 5px 5px white, 0 0 115px 101px rgba(58, 68, 89, 0.1) inset;
  }
  #svg-dotted {
  display: none !important;
  }
  .wheel-outer h1 {
    position: absolute;
    color: white;
    font-size: 28px;
    top: calc(50% - 280px);
    left: calc(20% - 50px);
    text-align: center;
}

#app{
  padding: 0px;
  transform: translateX(0px);
}
}


.scratch-card {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.3);
}

.scratch-card h2,
h3 {
  text-align: center;
  color: #5a2ff5;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.scratch-card h2 {
  font-size: 64px;
}

.scratch-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.scratch-card p {
    text-align: center;
  font-weight: 600;
}

.scratch-card button{
  width: 300px;
  height: 50px;
  background-color: #5a2ff5;
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  margin: 0 auto;
  font-weight: 600;
  letter-spacing: 1px;
}

.scratch-container {
  overflow: hidden;
  position: relative;
  width: 300px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scratch-canvas {
  position: absolute;
  top: 0;
  z-index: 10;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: grab;
  cursor: -webkit-grab;
}

.code {
  position: relative;
  visibility: hidden;
  margin: 0 auto;
  text-align: center;
  color: #5a2ff5;
  font-weight: 700;
  font-size: 1.2rem;
}

.fade-out {
  -webkit-animation: fade-out 0.8s;
  -webkit-animation-fill-mode: forwards;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  
  100% {
    opacity: 0;
  }
}

.coupon-card-wrapper{
  background:white;
  padding: 30px;

}

.coupon-card{
  background: linear-gradient(135deg, #7158fe, #9d4de6);
  color: #fff;
  text-align: center;
  padding: 40px 80px;
  border-radius: 15px;
  box-shadow: 0 10px 10px 0 rgba(0,0,0,0.15);
  position: relative;

}
.logo{
  width: 80px;
  border-radius: 8px;
  margin-bottom: 20px;

}
.coupon-card h3{
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  color: #fff;

}
.coupon-card p{
  font-size: 15px;

}
.coupon-row{
  display: flex;
  align-items: center;
  margin: 25px auto;
  width: fit-content;

}
#cpnCode{
  border: 1px dashed #fff;
  padding: 10px 20px;
  border-right: 0;

}
#cpnBtn{
  border: 1px solid #fff;
  background: #fff;
  padding: 10px 20px;
  color: #7158fe;
  cursor: pointer;
}

.circle1, .circle2{
  background: #f0fff3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

}
.circle1{
  left: -25px;
}
.circle2{
  right: -25px;
}



body {
  background: #AEC6D0;
}

#container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#overlay {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  height: 520px;
  width: 480px;
  padding-left: 20px;
  padding-right: 20px;
  background: white;
}

.close {
  cursor: pointer;
  position: absolute;
  height: 50px;
  width: 50px;
  background: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  right: -20px;
  top: -24px;
  border-radius: 50%;
  text-align: center;
}
.close span {
  position: relative;
  right: 1px;
  top: 2px;
  color: black;
  font-size: 40px;
  line-height: 50px;
}

.largeText {
  color: #333333;
  font-family: "Roboto", sans-serif;
  text-align: center;
  position: relative;
  top: 50px;
  color: #26a6c0;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

.secondary {
  top: 80px;
  font-size: 23px;
  color: #333333;
  font-family: "Roboto", sans-serif;
  text-align: center;
  position: relative;
  font-weight: 400;
}

.start {
  color: #333333;
  font-family: "Roboto", sans-serif;
  text-align: center;
  position: relative;
  font-size: 16px;
  font-weight: 300;
  top: 120px;
}

.coupon {
  color: #333333;
  font-family: "Roboto", sans-serif;
  text-align: center;
  position: relative;
  margin: 0 auto;
  font-size: 50px;
  top: 140px;
  border-radius: 5px;
  border: 3px dashed black;
  height: 120px;
  line-height: 120px;
  width: 300px;
  font-weight: 700;
}

.end {
  color: #333333;
  font-family: "Roboto", sans-serif;
  text-align: center;
  position: relative;
  top: 160px;
  font-weight: 300;
  font-size: 16px;
}

.finish {
  cursor: pointer;
  position: absolute;
  bottom: 35px;
  left: 169px;
  border-radius: 20px;
  background: none;
  color: #333333;
  text-transform: uppercase;
  border: 1px solid #26a6c0;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  width: 180px;
  height: 50px;
  transition: all 0.3s ease;
}
.finish:hover {
  background: #26a6c0;
  color: white;
  border: 1px solid #2294aa;
}

@import url("https://fonts.googleapis.com/css?family=Lato:400,700|Montserrat:900");


.timer-container {
  position: relative;
  display: grid;
  background: #183059;
  margin: auto;
  overflow: hidden;
  width: 600px;
  height: 520px;
  transform: translateX(-100px);
}

.timer-container h1 {
  font-family: "Lato", sans-serif;
  text-align: center;
  margin-top: 2em;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #F6F4F3;
}

#timer {
  color: #F6F4F3;
  text-align: center;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-size: 0.7em;
  letter-spacing: 3px;
  margin-top: 25%;
}

.days, .hours, .minutes, .seconds {
  display: inline-block;
  padding: 20px;
  width: 100px;
  border-radius: 5px;
}

.days {
  background: #EF2F3C;
}

.hours {
  background: #F6F4F3;
  color: #183059;
}

.minutes {
  background: #276FBF;
}

.seconds {
  background: #F0A202;
}
.numbers {
  font-family: "Montserrat", sans-serif;
  color: #183059;
  font-size: 4em;
  margin-left: -6px;
}

.white {
  position: absolute;
  background: #F6F4F3;
  height: 85px;
  width: 75px;
  left: 30%;
  top: 2%;
}
.white .triangle {
  border-bottom: 14px solid #F6F4F3;
}
.white .string {
  background: #F6F4F3;
  border: 1px solid #F6F4F3;
}

.red {
  position: absolute;
  background: #EF2F3C;
  left: 18%;
  top: 9%;
  height: 65px;
  width: 70px;
}
.red .triangle {
  border-bottom: 14px solid #EF2F3C;
}
.red .string {
  background: #EF2F3C;
  border: 1px solid #EF2F3C;
}

.blue {
  position: absolute;
  background: #276FBF;
  height: 80px;
  width: 80px;
  left: 60%;
  top: 5%;
}
.blue .triangle {
  border-bottom: 14px solid #276FBF;
}
.blue .string {
  background: #276FBF;
  border: 1px solid #276FBF;
}

.balloon {
  border: 1px solid #000;
  border-radius: 50% 50% 50% 50%/40% 40% 60% 60%;
  z-index: 2;
}

.eye {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 40%;
  left: 22%;
  background: #000;
  border-radius: 50%;
}
.eye:after {
  content: "";
  left: 35px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  position: absolute;
}

.mouth {
  position: absolute;
  top: 45%;
  left: 43%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.happy {
  border: 2px solid;
  border-color: transparent #000 #000 transparent;
  transform: rotate(45deg);
}

.triangle {
  position: absolute;
  left: 40%;
  bottom: -10%;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

.string {
  position: absolute;
  height: 70px;
  width: 1px;
  left: 48%;
  top: 100%;
  z-index: -1;
}

.star {
  width: 20px;
  height: 20px;
  background: #F6F4F3;
  -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-red {
  width: 30px;
  height: 30px;
  margin-left: 51px;
  margin-top: -5px;
  background: #EF2F3C;
  -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

footer {
  position: fixed;
  bottom: 0;
  right: 0;
  text-transform: uppercase;
  padding: 10px;
  font-family: "Lato", sans-serif;
  font-size: 0.7em;
}
footer p {
  letter-spacing: 3px;
  color: #EF2F3C;
}
footer a {
  color: #F6F4F3;
  text-decoration: none;
}
footer a:hover {
  color: #276FBF;
}
@media (max-width: 768px) {
 
 
  #timer {
    font-size: 0.6em;
    letter-spacing: 2px;
  }
  
  .days, .hours, .minutes, .seconds {
    display: inline-block;
    padding: 10px;
    width: 85px;
    border-radius: 5px;
  }
  .blue {
    left: 55%;
}
}




.card-container-shoe {
  display: flex;
  flex-direction: row;
  /* background-color: wheat; */
  box-sizing: border-box;
  box-shadow: 0px 0px 10px 0px rgb(145, 145, 145);
  border-radius: 0.8rem;
  transform: translateX(-100px);
}

.card-container-shoe .shoe-input{
    display: none;
}

.shoe-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease-in-out;
  border-radius: 0.8rem 0 0 0.8rem;
}

.logo-div {
  margin: 2rem 0 0 1.5rem;
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: yellowgreen; */
}

.logo-div img {
  width: 70%;
  opacity: 0.1;
}

.floating-div {
  /* background-color: yellowgreen; */
  height: 100%;
  width: 300px;
  display: grid;
  place-items: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
  box-sizing: border-box;
}

@keyframes float {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(-6%);
  }

  100% {
    transform: translateY(0%);
  }
}

.shoe-area :is(.shoe-1, .shoe-2, .shoe-3, .shoe-4) {
  /* background-color: yellow; */
  position: absolute;
  width: 100%;
  transform: rotateZ(-30deg) scale(1.3) translateX(-10%);
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.shoe-area .shoe-4 {
  /* background-color: whitesmoke; */
}

:is(.shoe-1, .shoe-2, .shoe-3, .shoe-4) img {
  width: 100%;
  opacity: 0;
  transform: rotateZ(-30deg) scale(1.3) translateX(-10%);
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

/*  ============= 
            Text styling 
                    ========== */

.text-area {
  background-color: var(--text-area-color);
  /* background-color: rgb(114, 91, 114); */
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0 0.8rem 0.8rem 0;
}

.text-area .heading-area {
  padding: 1rem;
}

.heading-area h2 {
  font-weight: 800;
  font-size: 2.5rem;
  transition: color 0.3s ease-in-out;
}

.heading-area h4 {
  margin: 0.25rem 0 0 0;
}

.paragraph-area {
  margin: 1.5rem 1rem 1.5rem 5rem;
  /* background-color: yellow; */
  font-size: 1rem;
}

/*  ============= 
            Available colors
                    ========== */

.color-selection {
  margin: 1rem 1rem 1.5rem 5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.8rem;
  box-sizing: border-box;
  /* background-color: wheat; */
}

.color-selection h5 {
  font-size: 1rem;
}

.color-selection .colors {
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
}

.color-pick-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.8rem;
}

.color-selection .color-1 {
  background-color: var(--primary-color-1);
}

.color-selection .color-2 {
  background-color: var(--primary-color-2);
}

.color-selection .color-3 {
  background-color: var(--primary-color-3);
}

.color-selection .color-4 {
  background-color: var(--primary-color-4);
}

/*  ============= 
            price-and-buy-btn styling
                             ========== */

.price-and-buy-btn {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
}

.price-and-buy-btn :is(.price-1, .price-2, .price-3, .price-4) {
  display: none;
  font-weight: 800;
  font-size: 2.5rem;
  transition: color 0.3s ease-in-out;
}

.buy-btn {
  padding: 1em 1.5em;
  font-size: 1.2rem;
  border-radius: 2rem;
  border: none;
  color: whitesmoke;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

/* ========== Themes ======== */

/* Theme 1 */
#color-1:checked ~ .text-area .color-selection .color-pick-div .color-1 {
  outline: 2px solid var(--primary-color-1);
  outline-offset: 2px;
}

#color-1:checked ~ .shoe-area {
  background-color: var(--primary-color-1);
}

#color-1:checked ~ .text-area .heading-area h2 {
  color: var(--primary-color-1);
}

#color-1:checked ~ .text-area .price-and-buy-btn .price-1 {
  display: block;
  color: var(--primary-color-1);
}

#color-1:checked ~ * .buy-btn {
  background-color: var(--primary-color-1);
}

/* Theme 2 */
#color-2:checked ~ .text-area .color-selection .color-pick-div .color-2 {
  outline: 2px solid var(--primary-color-2);
  outline-offset: 2px;
}

#color-2:checked ~ .shoe-area {
  background-color: var(--primary-color-2);
}

#color-2:checked ~ .text-area .heading-area h2 {
  color: var(--primary-color-2);
}

#color-2:checked ~ .text-area .price-and-buy-btn .price-2 {
  display: block;
  color: var(--primary-color-2);
}

#color-2:checked ~ * .buy-btn {
  background-color: var(--primary-color-2);
}

/* Theme 3 */
#color-3:checked ~ .text-area .color-selection .color-pick-div .color-3 {
  outline: 2px solid var(--primary-color-3);
  outline-offset: 2px;
}

#color-3:checked ~ .text-area .price-and-buy-btn .price-3 {
  display: block;
  color: var(--primary-color-3);
}

#color-3:checked ~ .shoe-area {
  background-color: var(--primary-color-3);
}

#color-3:checked ~ .text-area .heading-area h2 {
  color: var(--primary-color-3);
}

#color-3:checked ~ * .buy-btn {
  background-color: var(--primary-color-3);
}

/* Theme 4 */
#color-4:checked ~ .text-area .color-selection .color-pick-div .color-4 {
  outline: 2px solid var(--primary-color-4);
  outline-offset: 2px;
}

#color-4:checked ~ .shoe-area {
  background-color: var(--primary-color-4);
}

#color-4:checked ~ .text-area .price-and-buy-btn .price-4 {
  display: unset;
  color: var(--primary-color-4);
}

#color-4:checked ~ .text-area .heading-area h2 {
  color: var(--primary-color-4);
}

#color-4:checked ~ * .buy-btn {
  background-color: var(--primary-color-4);
}

/* Transition when the screen is higher than 1000px */

@media screen and (min-width: 62.5rem) {
  #color-1:checked ~ .shoe-area .floating-div .shoe-1 {
    transition-delay: 0.2s;
    animation-delay: 0.3s;
    transform: rotateZ(0);
    z-index: 99;
  }

  #color-1:checked ~ .shoe-area .floating-div .shoe-1 img {
    transition-delay: 0.2s;
    opacity: 1;
  }

  /* Theme 2 */
  #color-2:checked ~ .shoe-area .floating-div .shoe-2 {
    transition-delay: 0.2s;
    transform: rotateZ(0);
    z-index: 99;
  }

  #color-2:checked ~ .shoe-area .floating-div .shoe-2 img {
    transition-delay: 0.2s;
    opacity: 1;
  }

  /* Theme 3 */
  #color-3:checked ~ .shoe-area .floating-div .shoe-3 {
    transition-delay: 0.2s;
    transform: rotateZ(0);
    z-index: 99;
  }

  #color-3:checked ~ .shoe-area .floating-div .shoe-3 img {
    transition-delay: 0.2s;
    opacity: 1;
  }

  /* Theme 4 */
  #color-4:checked ~ .shoe-area .floating-div .shoe-4 {
    transition-delay: 0.2s;
    transform: rotateZ(0);
    z-index: 99;
  }

  #color-4:checked ~ .shoe-area .floating-div .shoe-4 img {
    transition-delay: 0.2s;
    opacity: 1;
  }
}

#color-4:checked ~ * .heading-area h2 {
  color: var(--primary-color-4);
}

@media screen and (max-width: 62.5rem) {
  .container {
    padding: 1rem;
  }

  .card-container-shoe {
    display: flex;
    flex-direction: column;
    transform: translateX(0);
  }

  .shoe-area {
    width: 100%;
    height: 40vw;
    padding: 1rem 0;
    border-radius: 0.8rem 0.8rem 0 0;
  }

  .shoe-area :is(.shoe-1, .shoe-2, .shoe-3, .shoe-4) {
    /* background-color: yellow; */
    position: absolute;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  }

  /* Transition for any screen lower than 1000px */

  .shoe-area :is(.shoe-1, .shoe-2, .shoe-3, .shoe-4) {
    /* background-color: yellow; */
    transform: rotateZ(0deg) translateY(-10%);
    width: 70%;
    margin: 1rem 0;
    opacity: 0;
  }

  :is(.shoe-1, .shoe-2, .shoe-3, .shoe-4) img {
    transform: rotateZ(0) scale(1);
    opacity: 1;
  }

  #color-1:checked ~ .shoe-area .floating-div .shoe-1 {
    transition-delay: 0.2s;
    opacity: 1;
    transform: rotateZ(0);
  }

  #color-1:checked ~ .shoe-area .floating-div .shoe-1 img {
    transition-delay: 0.2s;
    opacity: 1;
  }

  /* Theme 2 */
  #color-2:checked ~ .shoe-area .floating-div .shoe-2 {
    transition-delay: 0.2s;
    opacity: 1;
    transform: rotateZ(0);
  }

  #color-2:checked ~ .shoe-area .floating-div .shoe-2 img {
    transition-delay: 0.2s;
    opacity: 1;
  }

  /* Theme 3 */
  #color-3:checked ~ .shoe-area .floating-div .shoe-3 {
    transition-delay: 0.2s;
    opacity: 1;
    transform: rotateZ(0);
  }

  #color-3:checked ~ .shoe-area .floating-div .shoe-3 img {
    transition-delay: 0.2s;
    opacity: 1;
  }

  /* Theme 4 */
  #color-4:checked ~ .shoe-area .floating-div .shoe-4 {
    transition-delay: 0.2s;
    transform: rotateZ(0);
    opacity: 1;
  }

  #color-4:checked ~ .shoe-area .floating-div .shoe-4 img {
    transition-delay: 0.2s;
    opacity: 1;
  }

  /* Transition end */

  .logo-div img {
    width: 40%;
  }

  .text-area {
    /* background-color: rgb(114, 91, 114); */
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 0 0 0.8rem 0.8rem;
  }

  .paragraph-area,
  .color-selection {
    margin: 1.5rem 1rem;
  }
}

/* ====== Phone Size ===== */
@media screen and (max-width: 26.9rem) {
  .paragraph-area {
    margin: 1rem;
    font-size: 0.8rem;
  }

  .paragraph-area,
  .color-selection {
    margin: 0.7rem 1rem;
  }

  .color-selection {
    display: flex;
    flex-direction: column;
    align-items: unset;
    row-gap: 0.8rem;
  }

  .price-and-buy-btn {
    padding: 0.5rem 1rem;
    flex-direction: column;
    row-gap: 0.8rem;
    align-items: flex-start;
  }
}
