body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  box-sizing: border-box;
  background-color: #f3f3f3;
  font-family: "Comfortaa", sans-serif;
}

html {
  font-size: 62.5%;
}

/* Global Classes  */

.Flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  font-family: Comfortaa;
}

.Wrapper {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

input {
  font-family: comfortaa;
}

.secHeading {
  margin: 30px 0;
  font-size: 3rem;
  color: #660000;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

/* Global Classes  */

/* Store Header Starts */

.storeHeader {
  padding: 20px;
  background-color: #660000;
  border-top: 2px solid white;
}

.shWrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shContent {
  flex: 1;
  display: flex;
  align-items: center;
}

.shLogo {
  width: 130px;
  height: 130px;
  border-radius: 5px;
  display: inline-block;
  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: 2.5rem;
}
.shtext p {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.shBtnWrp {
  flex-direction: column;
}

.visitButton {
  display: flex;
  color: white;
  flex-wrap: wrap;
  width: 150px;
  font-weight: 700;
  padding: 1.2rem 0;
  font-size: 1.6rem;
  text-align: center;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  border: 3px solid white;
  transition: all linear 0.4s;
}

.visitButton:hover {
  color: #660000;
  background-color: white;
  border-radius: 5px 25px 5px 5px;
}

/* Store Header Ends */

/* Coupons Section */
.secWrapper {
  display: flex;
  padding: 30px 0;
  justify-content: space-between;
}
/* Primary Section */
.primarySec {
  width: 70%;
  padding: 20px;
  margin-right: 30px;
  border-radius: 5px;
  background-color: white;
}

/* Coupons  Starts */
.couponWrap {
  gap: 30px;
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.Coupon {
  flex: 1;
  display: flex;
  color: black;
  border-radius: 5px;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
  background-color: white;
  transition: all linear 0.4s;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.Coupon:hover {
  color: white;
  background-color: #660000;
}
.Coupon:hover .cBtn {
  color: #660000;
  font-weight: 700;
  background-color: white;
}
.cLogo {
  width: 100%;
  height: 135px;
  border-radius: 5px 5px 0 0;
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.cLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px 5px 0 0;
}

.tagWrap {
  width: 100%;
  display: flex;
  margin: 0 15px;
  margin-top: 1rem;
  align-items: center;
  justify-content: space-between;
}

.verified {
  color: white;
  margin: 0 10px;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 3px;
  padding: 0.5rem 0.4rem;
  text-transform: uppercase;
  transition: all linear 0.4s;
  background-color: #33b86c;
}

.size {
  font-size: 1.2rem !important;
}

.color {
  background-color: #e84f5e !important;
}

.cHeading {
  padding: 0 10px;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}

.cBtn {
  border: none;
  color: white;
  cursor: pointer;
  background: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1.3rem 2rem;
  border-radius: 0 3px 0 3px;
  text-transform: uppercase;
  transition: all linear 0.2s;
  background-color: #660000;
  transition: all linear 0.4s;
  text-decoration: none;
}

.cBtn:hover {
  border-radius: 0 20px 0 3px;
}

/* Coupons  Ends */

.secondarySec {
  width: 30%;
  padding: 5px;
}
.secHeading + .secHeading {
  margin: 30px 0;
  font-weight: 700;
}

@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: 768px) {
  .couponWrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 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: 540px) {
  .couponWrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* 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 */
}
