body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

html {
  font-size: 62.5%;
}

/* Global Classes  */

.Flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shLogo img
.Wrapper {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  padding: 1.5rem;
}

.secHeading {
  font-size: 3rem;
  color: #2d8ad9;
  text-align: center;
  text-transform: uppercase;
}
/* Global Classes  */

/* Store Header Starts */

.storeHeader {
  padding: 20px;
  border-top: 2px solid white;
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}

.shWrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shContent {
  flex: 1;
  display: flex;
  align-items: center;
}

.shLogo {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  display: inline-block;
  border: 20px solid white;
  background-color: white;
}

.shLogo img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  border-radius: 100%;
}

.shtext {
  color: white;
  margin-left: 30px;
}

.shtext h2 {
  margin: 0;
  font-size: 3rem;
}
.shtext p {
  font-size: 1.6rem;
}

.ratings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.stars {
  width: 130px;
  height: 35px;
}
.stars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratings span {
  font-size: 1.6rem;
}

.visitButton {
  display: flex;
  color: white;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 12px 18px;
  align-items: center;
  text-decoration: none;
  border: 3px solid white;
  transition: all linear 0.2s;
}

.visitButton:hover {
  color: #2d8ad9;
  border-radius: 10px;
  background-color: white;
}

.viewsBar {
  margin-top: 30px;
  color: #2d8ad9;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  padding: 12px 18px;
  background-color: white;
}

/* Store Header Ends */

.sectionWrapper {
  display: flex;
  align-items: flex-start;
}

.primarySec {
  width: 70%;
  margin-right: 30px;
}

/* StorePage Coupon  */
.storeCoupon {
  display: flex;
  padding: 20px;
  border-radius: 5px;
  align-items: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}
.storeCoupon + .storeCoupon {
  margin-top: 30px;
}
.couponLogo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-left: -80px;
  border: 15px solid white;
  background-color:white;
}
.couponLogo img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  border-radius: 50%;
}

.cpnWrp {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between !important;
}

.text {
  flex: 1;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start !important;
}

.verified,
.exclusive {
  color: white;
  padding: 5px 10px;
  font-size: 1.4rem;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #33b86c;
}

.verified {
  margin-right: 10px;
}

.exclusive {
  margin-right: 10px;
  background-color: #e84f5e;
}

.couponUsed {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.2rem;
  color: #2d8ad9;
  font-weight: 700;
  background-color: white;
}

.text h3 {
  color: white;
  font-size: 2rem;
  margin: 30px 0;
}

.cpnBtn {
  width: 130px;
  height: 30px;
  padding: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  border: 2px solid white;
  transition: all linear 0.2s;
}

.cpnBtn:hover {
  color: #2d8ad9;
  border-radius: 5px;
  background-color: white;
}

/* StorePage Coupon  */

/* Secondary Stores and Widgets */
.secondarySec {
  width: 30%;
  padding: 5px;
}
.secondarySec .secHeading {
  font-weight: 700;
  margin: 30px 0;
}
.widgets {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  background-color: white;
}

.widgets a {
  margin: 5px;
  color: white;
  color: #2d8ad9;
  font-weight: 700;
  padding: 5px 12px;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  background-color: white;
  transition: all linear 0.2s;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
.widgets a:hover {
  color: white;
  transform: scale(1.08);
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}
/* Secondary Stores and Widgets Ends */

@media (max-width: 1024px) {
  .secondarySec {
    display: none;
  }
  .primarySec {
    width: 100%;
    margin: 0;
  }
}

/* For screens less than or equal to 991px */
@media (max-width: 991px) {
  .shWrap,
  .shContent {
    flex-direction: column;
  }
  .shBtnWrp {
    display: flex;
    justify-content: space-around;
  }
  .viewsBar {
    margin-top: 0;
    margin-left: 30px;
  }
  .shtext {
    margin: 30px 0;
    margin-left: 0;
    text-align: center;
  }
  .ratings {
    justify-content: center;
  }
  .shtext h2 {
    font-size: 2.5rem;
  }
  .shLogo {
    width: 130px;
    height: 130px;
  }
}

/* For screens less than or equal to 720px */
@media (max-width: 720px) {
  .primarySec h2 {
    margin-bottom: 100px;
  }
  .storeCoupon,
  .cpnWrp {
    flex-direction: column;
  }
  .couponLogo {
    margin: 0;
    margin-top: -110px;
    margin-bottom: 30px;
    background-color: white;
  }
  .text {
    padding: 10px 0;
    text-align: center;
  }
  .space {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .cpnBtn {
    margin-top: 15px;
  }

  .storeCoupon + .storeCoupon {
    margin-top: 100px;
  }
}

/* For screens less than or equal to 640px */
@media (max-width: 640px) {
  /* Styles for 640px */
}

/* For screens less than or equal to 560px */
@media (max-width: 560px) {
  /* Styles for 560px */
}

/* For screens less than or equal to 480px */
@media (max-width: 480px) {
  /* Styles for 480px */
}

/* For screens less than or equal to 320px */
@media (max-width: 320px) {
  /* Styles for 320px */
}
