body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: Roboto, sans-serif !important;
  background: #fff;
  overflow-x: hidden;
}

/* Header styles */
.site-header {
  position: relative;
  background: #fef1f1;
}

.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
  width: 75%;
  margin: 0 auto;
}

.site-header__start {
  min-width: 150px;
  cursor: pointer;
}

.nav__wrapper {
  list-style: none;
  display: flex;
  position: relative;
}

.nav__item {
  position: relative;
}

.nav__item a {
  display: block;
  padding: 1.5rem 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  color: #282525;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
}

.nav__item:hover a {
  color: #f5222d;
}

.nav__item.active a {
  color: #f5222d;
}

.nav__toggle {
  display: none;
}

.half-circle {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 17px;
  background: #ff0000;
  border-radius: 50%;
  display: none;
}

.nav__item.active .half-circle,
.nav__item:hover .half-circle {
  display: block;
}

.site-banner {
  display: flex;
  justify-content: center;
  background: #fef1f1;
}

.site-banner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 80%;
  padding: 90px 0;
  margin-bottom: 50px;
  border-radius: 35px;
  background: linear-gradient(180deg, #fff 54.17%, rgba(255, 255, 255, 0) 100%);
}

.site-banner #gift-1-img,
.site-banner #sock-1-img,
.site-banner #snowman-1-img {
  position: absolute;
  height: auto;
}

.site-banner #sock-1-img {
  left: -65px;
  top: 30px;
  width: 100px;
  clip-path: polygon(0 0, 65% 0, 65% 100%, 0 100%);
}

.site-banner #gift-1-img {
  bottom: 20px;
  left: -65px;
  width: 150px;
}

.site-banner #snowman-1-img {
  right: -130px;
  width: 166px;
  bottom: 40px;
}

.site-banner-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.site-banner-main h1 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
}

.site-banner-main p {
  color: #000;
  width: 70%;
  font-size: 16px;
}

.site-banner-main button {
  background: #f5222d;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  padding: 15px 70px;
  border: none;
  cursor: pointer;
}

.site-banner-explore-more {
  display: flex;
  padding-left: 150px;
  align-items: center;
  flex-wrap: wrap;
}

.site-banner-explore-more a {
  border-radius: 26.5px;
  background: #fff;
  padding: 16px 5px;
}

.site-banner-explore-more span {
  color: #434343;
  font-size: 16px;
  width: 12%;
  margin-left: 10px;
}

/* Main content styles */

.start-giving {
  background: #fff;
  padding: 60px 0 30px;
}

.start-giving-headline {
  padding-right: 40px;
  margin-bottom: 50px;
}

.start-giving h2 {
  text-align: center;
  color: #282525;
  font-size: 24px;
  margin: 0;
}

.giving-items {
  display: flex;
  gap: 15%;
  justify-content: center;
  flex-wrap: wrap;
}

.giving-items div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.giving-items div h3 {
  margin-bottom: 0;
}

.giving-items div p {
  width: 60%;
}

.celebrate-wrapper {
  background: #fff;
}

.celebrate {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #fff;
  margin: 0 auto;
  width: 65%;
}

.celebrate h1 {
  margin: 0;
  width: fit-content;
  font-size: 24px;
  color: #333;
}

.celebrate p {
  color: #000;
  width: 40%;
  font-size: 16px;
  margin: 50px 0;
}

.celebrate button {
  background: #f5222d;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  padding: 15px 70px;
  border: none;
  cursor: pointer;
}

.main-body {
  background: #fff;
  padding: 60px 0;
}

.main-body h2 {
  text-align: center;
  margin-bottom: 45px;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  max-width: 1650px;
  margin: 0 auto;
}

.product-card {
  margin: 10px;
  padding: 20px;
  text-align: center;
  max-width: 340px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.11);
}

.product-card p {
  text-align: start;
  font-weight: bold;
  margin: 0;
}

.countdown {
  background: #eeeeee;
  display: flex;
  padding: 10px;
  justify-content: space-around;
  border-radius: 15px;
  margin-bottom: 10px;
}

.countdown-box p:last-child {
  text-align: center;
  color: #dc3845;
}

.countdown-value {
  color: white;
  background: black;
  border-radius: 11px;
  padding: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

.product-card img {
  margin: 10px 0;
}
.product-card-price-wrapper {
  display: flex;
  justify-content: space-evenly;
  border-top: 2px solid #f5222d;
  margin: 10px 0;
  padding: 10px 0 15px;
}

.product-card-prices {
  display: flex;
  flex-direction: column;
  color: #f5222d;
}

.product-card-price {
  text-decoration: underline;
}

.price {
  color: #646262;
}

.product-card-value {
  font-size: 21px;
  font-weight: bold;
}
.product-card-discounted-value {
  font-size: 18px;
  font-weight: bold;
  text-decoration: line-through;
}
#shopping-icon {
  margin: 0;
  max-width: 16px;
}
.product-card-button {
  font-size: 16px;
  width: 250px;
  border-radius: 20px;
  background: #dc3845;
  border: none;
  color: white;
  font-weight: bold;
  padding: 13px 60px;
  cursor: pointer;
}

.new-arrivals {
  background: #fff;
}

.new-arrivals h2 {
  font-size: 24px;
  text-align: center;
}

.swiper {
  width: 50%;
  margin: 0 auto;
  padding: 10px 5px !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex !important;
  justify-content: space-between;
  flex-direction: column !important;
  align-items: center !important;
  margin-bottom: 50px;
  box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  height: 530px !important;
}

.swiper-slide p {
  color: #5d5656;
  font-size: 16px;
}

.swiper-slide #new-arrival-img {
  max-width: 300px;
  max-height: 300px;
  border-radius: 15px;
}

.new-arrival-prices-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid lightgray;
  padding: 10px 0 10px;
}

.new-arrival-prices-wrapper p {
  margin: 0;
}

.new-arrival-description {
  text-overflow: ellipsis;
  width: 300px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  max-width: 88%;
  font-weight: bold;
}

.new-arrival-price p:first-child,
.new-arrival-discount-price p:first-child {
  text-decoration: underline;
  text-align: left;
}

.new-arrival-price p:last-child {
  text-decoration: line-through;
}

.new-arrival-price p {
  font-size: 15px;
  font-weight: bold;
}

.new-arrival-discount-price p {
  font-size: 18px;
  font-weight: bold;
  color: #dc3845;
}

.new-arrival-button {
  color: #fff;
  border-radius: 20px;
  background: #dc3845;
  padding: 10px 45px;
  margin: 0 0 5px;
  font-size: 16px;
  cursor: grab;
}

.swiper-slide img {
  width: 100%;
}

.swiper-pagination-bullet {
  background: #dc3845 !important;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  margin-top: 70px;
}

.faq-title {
  font-size: 24px;
  font-weight: bold;
}

.grid-faq {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  margin-bottom: 50px;
}

.grid-faq p {
  flex: 0 0 calc(33.33% - 20px);
  margin: 10px;
  padding: 10px;
  border: 1px solid #000000;
  border-radius: 5px;
}

.faq-accordion {
  background: #fff;
  color: #000000;
  cursor: pointer;
  padding: 18px;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-weight: bold;
  width: 500px;
}

.faq-accordion:after {
  content: "\FF0B";
  font-size: 12px;
  color: #777;
  float: right;
  margin-left: 5px;
  border: 1px solid #000;
}

.panel {
  background-color: white;
  display: none;
  overflow: hidden;
  width: 541px;
}

/* Footer styles */
footer {
  background-color: #fff;
  text-align: center;
  padding-top: 70px;
  text-align: left;
}

.footer-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-wrapper h3 {
  color: #282525;
  font-size: 20px;
}

.footer-wrapper p {
  color: #5d5656;
  cursor: pointer;
}

.footer-wrapper-first {
  margin-top: 20px;
}

#green-footer-img,
#red-footer-img {
  margin-top: 80px;
}

footer #copy {
  font-size: 13px;
  text-align: center;
  color: #918889;
}

@media screen and (min-width: 1398px) {
  .card {
    max-width: 200px;
  }
}

@media screen and (max-width: 1280px) {
  .product-cards {
    max-width: 1600px;
  }
  .new-arrival-prices-wrapper {
    gap: 15px;
  }
  .new-arrival-discount-price p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1201px) {
  .site-banner {
    padding-left: 20px;
  }
  .faq-title {
    text-align: center;
  }
  .faq-accordion {
    width: 320px;
  }
  .panel {
    width: 361px;
  }
  .celebrate {
    width: 90%;
  }
  .celebrate p {
    width: 100%;
  }
}

@media screen and (max-width: 1095px) {
  .nav__wrapper {
    position: absolute;
    top: 69%;
    right: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    background: #fef1f1;
  }

  .nav__wrapper {
    visibility: none;
    opacity: 0;
    display: none;
  }
  .nav__wrapper.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .nav__item.active .half-circle,
  .nav__item:hover .half-circle {
    display: none;
  }

  .nav__toggle {
    display: block;
    cursor: pointer;
    width: 50px;
  }

  .site-header {
    z-index: 9;
  }

  .site-header__start {
    margin-left: 0;
  }

  .site-banner-main {
    text-align: center;
  }
  .site-banner-main p {
    width: 100%;
  }

  .site-banner #gift-1-img {
    bottom: 20px;
    left: -65px;
    width: 100px;
  }
  .site-banner #snowman-1-img {
    right: -25px;
    width: 99px;
    bottom: 40px;
  }

  .site-banner-explore-more {
    padding-left: 0;
    justify-content: center;
  }

  .site-banner-explore-more span {
    width: 30%;
  }

  .start-giving-headline {
    padding-right: 25px;
  }
  .swiper {
    width: 60%;
  }
}

@media screen and (max-width: 900px) {
  .start-giving-headline {
    padding-right: 0;
  }
}

@media screen and (max-width: 790px) {
  .site-header__start img {
    width: 80%;
  }

  .card-container {
    gap: 90px;
  }

  .grid-faq {
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .site-header__wrapper {
    padding: 1rem;
  }
  .main-headline {
    text-align: center;
    padding: 0 10px;
  }
  .faq-title {
    font-size: 26px;
  }

  .grid-faq p {
    margin: 5px;
  }

  .faq-accordion {
    width: 300px;
  }
  .card-container {
    gap: 50px;
  }
  .panel {
    width: 331px;
  }
  .celebrate {
    flex-direction: column;
  }

  .celebrate > div {
    text-align: center;
  }
  .celebrate > div h1 {
    width: 100%;
  }
  footer {
    text-align: center;
  }
  .footer-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #green-footer-img,
  #red-footer-img {
    margin-top: 0;
  }
}

@media screen and (max-width: 580px) {
  .new-arrival-prices-wrapper {
    padding: 10px 0 0;
  }
  .new-arrival-button {
    font-size: 14px;
  }
  .swiper {
    width: 90%;
  }
  .swiper-slide {
    width: 258px !important;
  }
}

@media screen and (max-width: 396px) {
  .product-card-button {
    padding: 8px 50px;
  }
}

@media screen and (max-width: 376px) {
  .nav__wrapper {
    display: none;
  }

  .nav__toggle {
    width: 40px;
  }

  .product-card-button {
    padding: 8px 50px;
  }

  .grid-faq {
    flex-direction: column;
    max-width: 340px;
  }

  .grid-faq p {
    margin: 5px;
  }

  .faq-accordion {
    max-width: 270px;
  }

  .panel {
    max-width: 300px;
  }

  .card-container {
    gap: 40px;
  }
}

@media screen and (max-width: 330px) {
  .product-card-button {
    padding: 8px 20px;
  }
}
