@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --theme-color: #da1e22;
  --dark-theme-color: #a70000;
}

body {
  font-family: "Nunito", sans-serif !important;
  overflow-x: hidden;
}

.header-contain {
  position: relative;
}

.header-contain::before {
  content: "";
  position: absolute;
  background-image: url(/image/catalog/oyuncak/header-background.png);
  right: -50%;
  bottom: -14px;
  max-width: 893px;
  height: 109px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-60%);
  z-index: 9;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 0;
}

.header-top > a:not(:last-child) {
  margin-right: 1.5rem;
}

.header-top > a > i {
  color: var(--theme-color);
  margin-right: 0.3rem;
  font-size: 18px;
}

.header-top > a {
  font-size: 14px;
  transition: 0.25s ease-in-out;
}

.header-top > a:hover {
  color: var(--theme-color);
}

.header-bottom {
  display: flex;
  align-items: center;
  width: 100%;
}

.header-logos > a {
  width: 100%;
  display: flex;
}

.header-logos > a > img {
  width: 100%;
}

.header-search > form,
.header-search > form > input {
  width: 100%;
}

.header-search > form > input {
  height: 100%;
  border: 1px solid #c2d3e2;
  border-radius: 30px;
  padding-left: 12%;
}

.header-search > form {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 60px;
}

.header-acoount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 35%;
  margin-left: 2rem;
}

.header-users {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px #e5eaef;
  padding: 0.6rem 0rem;
  border-radius: 3rem;
  margin-right: 1.5rem;
}

.header-user-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-user-text > a:first-child {
  color: var(--theme-color);
  font-weight: 800;
  transition: 0.25s ease-in-out;
}

.header-user-text > a:last-child {
  font-size: 11px;
  color: #222221;
  font-weight: 600;
  transition: 0.25s ease-in-out;
}

.header-user-text > a:first-child:hover {
  color: var(--dark-theme-color);
}

.header-user-text > a:last-child:hover {
  color: var(--theme-color);
}

.header-users > i {
  font-size: 25px;
  margin-right: 0.5rem;
  color: var(--theme-color);
}

.header-acoount > div {
  width: 100%;
}

.header-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
  background-color: var(--theme-color);
  /* margin: 0 1rem; */
  border-radius: 3rem;
  transition: 0.25s ease-in-out;
}

.header-cart:hover {
  background-color: var(--dark-theme-color);
}

.header-cart > a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cart > a > i {
  font-size: 25px;
  margin-right: 0.5rem;
  color: #fff;
}

.header-logos {
  display: flex;
  width: 25%;
  margin-right: 2rem;
}

.header-search {
  display: flex;
  width: 40%;
  margin-right: 2rem;
  margin-left: 2rem;
}

.header-search > form > button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 80px;
  border: none;
  padding: 0.5rem;
  border-radius: 30px;
  background-color: var(--theme-color);
  color: #fff;
  font-weight: 700;
  transition: 0.25s ease-in-out;
}

.header-search > form > button:hover {
  background-color: var(--dark-theme-color);
}

.container {
  width: 1320px !important;
  padding-bottom: 3rem;
}

.header-search > form > i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  z-index: 999;
  width: 10%;
  color: #aab8c5;
  font-size: 20px;
}

.header-menu {
  display: flex;
  height: 60px;
  background-color: var(--theme-color);
  align-items: center;
  justify-content: center;
}

.home-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-icon-content,
.home-icon-content > a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-evenly;
}

.home-icon-content {
  border: 2px solid #eff4fa;
  margin: 0.5rem;
  border-radius: 50px 5px 5px 50px;
}

.home-icon-content-image {
  display: flex;
  background-color: #fff;
  box-shadow: 0 5px 20px #e5eaef;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}

.home-icon-content:hover .home-icon-content-image {
  transform: scale(1.1);
}

.home-icon-content-image > img {
  width: 100%;
  object-fit: scale-down;
}

.home-icon-content-text {
  display: flex;
  flex-direction: column;
  width: calc(100% - 90px);
  padding-left: 1rem;
}

.home-icon-content-text > span {
  font-size: 15px;
  font-weight: 800;
}

.home-icon-content-text > p {
  font-size: 14px;
}

.home-icon-wrapper-title {
  padding: 2.5rem 1.5rem;
}

.home-grid-box-wrapper-title {
  padding: 2.5rem 1.5rem;
  padding-bottom: 1rem;
  padding-top: 0;
}

.home-icon-wrapper-title > span,
.home-grid-box-wrapper-title > span {
  font-size: 25px;
  font-weight: 700;
}

.home-slider {
  top: unset !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000000;
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: 0.3s ease-in-out;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--dark-theme-color);
  color: #fff;
}

.home-grid-box-wrapper {
  display: flex;
}

.home-grid-box-small {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
}

.home-grid-box-small > a {
  margin: 0.8rem;
  width: calc(33.333% - 1.6rem);
  margin-top: 0;
  border-radius: 30px;
  overflow: hidden;
}

.home-grid-box-small > a:nth-child(4),
.home-grid-box-small > a:nth-child(5),
.home-grid-box-small > a:nth-child(6) {
  margin-bottom: 0;
}

.home-grid-box-small > a > img {
  width: 100%;
  border-radius: 30px;
  transition: 0.5s ease-in-out;
}

.home-grid-box-small > a:hover > img {
  transform: scale(1.1);
}

.home-grid-box-big {
  width: 30%;
  margin-right: 0.8rem;
}

.home-grid-box-big > a {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.home-grid-box-big > a > img {
  display: flex;
  width: 100%;
  border-radius: 30px;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.home-grid-box-big > a:hover > img {
  transform: scale(1.1);
}

.featured-item-top,
.featured-item-top > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.featured-item-bottom {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
}

.featured-item-bottom > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100px;
  width: 100%;
  align-items: center;
}

.featured-slick-slider-wrapper .item {
  border: 2px solid #eff4fa;
  margin: 0 0.8rem;
  border-radius: 5px;
  padding: 1rem;
  transition: 0.25s ease-in-out;
}

.featured-slick-slider-wrapper .item:hover {
  box-shadow: inset 0 0 0 1px #da1e22;
  border-color: var(--theme-color);
}

.featured-slick-slider-wrapper .item .featured-item-top > a {
  overflow: hidden;
}

.featured-slick-slider-wrapper .item img {
  transition: 0.5s ease-in-out;
}

.featured-slick-slider-wrapper .item:hover img {
  transform: scale(1.1);
}

.featured-name > span {
  display: block;
  font-size: 15px;
  line-height: 1.9rem;
  overflow: hidden;
  color: #222221;
  transition: 0.25s ease-in-out;
}

.featured-name > span:hover {
  color: var(--theme-color);
}

.discount-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.discount-wrapper > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3rem;
  border-radius: 5px;
  color: #fff;
  background-color: var(--theme-color);
}

.featured-price {
  margin-top: 0.5rem;
}

span.old-price {
  font-size: 13px;
  color: #8c8c8c !important;
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-weight: 600;
}

span.new-price,
.featured-price > span {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
}

.featured-name {
  margin-bottom: 0.5rem;
}

.featured-slick-prev,
.featured-slick-next {
  width: 45px;
  height: 45px;
  background-color: #fff;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 5px 20px #e5eaef;
  border-radius: 5px;
  transition: 0.25s ease-in-out;
}

.featured-slick-prev > i,
.featured-slick-next > i {
  font-size: 25px;
}

.featured-slick-prev {
  position: absolute;
  top: 35%;
  left: -5px;
  z-index: 99;
}

.featured-slick-next {
  position: absolute;
  top: 35%;
  right: -5px;
  z-index: 99;
}

.featured-slick-prev:hover,
.featured-slick-next:hover {
  margin-top: 5px;
  box-shadow: 0 3px 10px #e5eaef;
}

.slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.slick-dots > li {
  font-size: 0;
  margin: 0 0.2rem;
}

.slick-dots > li > button {
  width: 11px;
  height: 11px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.slick-dots > li.slick-active > button {
  background-color: #000;
  border: 1px solid transparent;
}

.featured-slider-title {
  display: flex;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.featured-slider-title > a {
  font-size: 25px;
  font-weight: 700;
  color: #000;
}

.footer-bottom-text {
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.megamenu-wrapper {
  background-color: var(--theme-color);
}

ul.megamenu > li > a,
ul.megamenu > li:last-child > a {
  color: #fff;
  display: flex;
}

ul.megamenu > li.active > a,
ul.megamenu > li.home > a,
ul.megamenu > li:hover > a,
ul.megamenu > li > a:hover {
  background-color: var(--theme-color);
  color: #fff;
}

ul.megamenu li .sub-menu .content .static-menu .menu ul {
  align-items: baseline !important;
}

ul.megamenu li .sub-menu .content .categories {
  transform: unset !important;
  opacity: 1 !important;
  visibility: visible !important;
}

ul.megamenu li .sub-menu .content .static-menu a.main-menu:hover {
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  padding-left: 0 !important;
}

ul.megamenu li .sub-menu .content .static-menu a.main-menu:hover::before {
  opacity: 0 !important;
  visibility: hidden !important;
}

ul.megamenu > li > a strong {
  font-size: 0.95rem !important;
}

ul.megamenu li .sub-menu .content .static-menu a.main-menu {
  font-size: 0.9rem;
  color: var(--theme-color);
  font-weight: 700;
}

ul.megamenu > li:hover,
ul.megamenu > li:hover > a {
  background-color: var(--dark-theme-color);
}

@media screen and (min-width: 992px) {
  ul.megamenu > li,
  ul.megamenu > li > a {
    height: 60px;
  }
}

.header-menu .megamenu-nav {
  height: 60px;
  align-items: center;
}

.product-fav-btn.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.featured-btn {
  position: absolute;
  bottom: 14%;
  width: 90%;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}

.featured-slick-slider-wrapper .item:hover .featured-btn > button {
  opacity: 1;
  visibility: visible;
  transform: unset;
}
.product-card:hover .featured-btn > button {
  opacity: 1;
  visibility: visible;
  transform: unset;
}

.product-card .featured-btn {
  bottom: 8%;
  width: 95%;
}

.featured-btn > btn {
  width: 100%;
}

.featured-btn > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f6891f;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  transform: translateY(10px) scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.product-swipers {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.swiper-container-thumbs .swiper-wrapper .swiper-slide .product-images {
  width: 70%;
  display: flex;
  border: 2px solid #eff4fa;
  border-radius: 5px;
}

.swiper-container-thumbs .swiper-wrapper .swiper-slide .product-images {
  margin-bottom: 0.5rem;
}

.swiper-container-thumbs .swiper-wrapper .swiper-slide .product-images > img {
  cursor: pointer;
}

.product-images > img {
  width: 100%;
}

.swiper-container-thumbs .swiper-wrapper {
  flex-direction: column;
  align-items: center;
}

.swiper-container-thumbs .swiper-wrapper .swiper-slide {
  height: unset !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-swipers {
  border: 2px solid #eff4fa;
  border-radius: 5px;
}

.swiper-container-thumbs {
  display: flex;
  width: 30%;
  align-items: center;
  justify-content: center;
}

.product-swiper-wrapper {
  display: flex;
  flex-direction: row-reverse;
}

.product-grid .product-card {
  width: calc(16.666% - 1.5rem) !important;
}

.mobile-header-contain {
  display: none;
}

.product-card {
  border: 2px solid #eff4fa;
  border-radius: 5px;
  margin: 0 !important;
  margin: 0.5rem !important;
  padding: 0.5rem;
}

.product-card:hover {
  box-shadow: none !important;
  box-shadow: inset 0 0 0 1px #da1e22 !important;
  border-color: var(--theme-color);
}

@media screen and (max-width: 1300px) {
  .container {
    width: auto !important;
  }

  .header-contain {
    overflow: hidden;
  }

  .header-contain::before {
    bottom: -34px;
    width: 70%;
    z-index: 9;
  }

  .home-icon-wrapper {
    flex-wrap: wrap;
  }

  .home-icon-content {
    width: calc(33.33% - 1rem);
  }

  .product-grid .product-card {
    width: calc(25% - 1rem) !important;
  }
}

@media screen and (max-width: 992px) {
  .header-contain {
    display: none;
  }

  .mobile-header-contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(180deg, #ecf4fd 0%, #ffffff 70.85%);
    position: relative;
    z-index: 999999;
  }

  .mobile-logo {
    width: 25%;
    display: flex;
  }

  .mobile-right {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .mobile-logo > a {
    width: 100%;
  }

  .mobile-logo > a > img {
    width: 100%;
  }

  .mobile-right > div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-search {
    background-color: #fff;
    box-shadow: 0 5px 20px #e5eaef;
  }

  .mobile-account {
    background-color: #fff;
    box-shadow: 0 5px 20px #e5eaef;
  }

  .mobile-account > a > i {
    color: var(--theme-color);
    font-size: 22px;
  }

  .mobile-account > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .mobile-cart {
    background-color: var(--theme-color);
  }

  .mobile-cart > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .mobile-cart > a > i {
    color: #fff;
    font-size: 20px;
  }

  .mobile-search-input-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    height: 85px;
    top: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
      rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease-in-out;
  }

  .mobile-search-input-wrapper > form {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .mobile-search-input-wrapper > form > input {
    width: 85%;
    height: 60px;
    border: 1px solid #c2d3e2;
    border-radius: 30px;
    padding-left: 8%;
  }

  .mobile-search-input-wrapper > form > button {
    height: 45px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10%;
    width: 80px;
    border: none;
    border-radius: 30px;
    background-color: var(--theme-color);
    color: #fff;
  }

  .mobile-search-input-wrapper > form > i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 11%;
    color: #a8c5de;
  }

  .mobile-serach-overlay {
    position: fixed;
    background: rgba(0, 0, 0, 80%);
    inset: 0;
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease-in-out;
  }
  .mobile-search-input-wrapper.active {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }

  .mobile-serach-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .header-menu {
    justify-content: flex-end;
  }

  .show-menu > i {
    color: #fff;
    font-size: 35px;
    margin-right: 1rem;
  }

  ul.megamenu > li > a,
  ul.megamenu > li:last-child > a,
  ul.megamenu li .sub-menu .content .static-menu a.main-menu,
  ul.megamenu > li.active > a,
  ul.megamenu > li.home > a,
  ul.megamenu > li:hover > a,
  ul.megamenu > li > a:hover {
    color: #000;
  }

  ul.megamenu > li > a {
    height: 45px;
  }

  ul.megamenu > li {
    overflow: hidden;
  }
  .megamenu-wrapper,
  ul.megamenu > li:hover,
  ul.megamenu > li:hover > a {
    background-color: #fff;
  }

  .sogo-product-container {
    flex-direction: column;
  }

  .sogo-product-container > div {
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: 1.5rem !important;
  }

  .sogo-product-container .product-left {
    padding: 1rem;
  }

  .product-right {
    padding-left: 0 !important;
    padding: 1rem !important;
  }
}

@media screen and (max-width: 767px) {
  .product-swiper-wrapper {
    display: none;
  }
}

@media screen and (max-width: 553px) {
  .home-icon-content {
    width: calc(50% - 1rem);
  }

  .home-grid-box-wrapper {
    flex-direction: column;
  }

  .home-grid-box-wrapper > div {
    width: 100%;
    margin-top: 1rem;
    margin-right: 0;
  }

  .home-grid-box-small > a {
    width: calc(50% - 1.6rem);
  }

  .product-grid .product-card {
    width: calc(50% - 1rem) !important;
  }
}

@media screen and (max-width: 426px) {
  .home-icon-content {
    width: calc(100% - 1rem);
  }

  .home-icon-content-text {
    align-items: center;
  }

  .product-grid .product-card {
    width: calc(100% - 1rem) !important;
  }
}

.home-grid-box-big > a,
.home-grid-box-small > a {
  position: relative;
  overflow: hidden;
}

.image-hover-gradiant {
  position: absolute;
  inset: 0;
  z-index: 9;
  background-image: radial-gradient(
    circle,
    #9d72c5,
    #986cc1,
    #9366bd,
    #8f61b9,
    #8a5bb5,
    #8353af,
    #7c4aaa,
    #7542a4,
    #6a359b,
    #5f2893,
    #541a8a,
    #480882
  );
  opacity: 0;
  visibility: hidden;
  transform: scale(0.6);
  border-radius: 30px;
  transition: 0.35s ease-in-out;
}

.home-grid-box-big > a:hover .image-hover-gradiant,
.home-grid-box-small > a:hover .image-hover-gradiant {
  opacity: 0.3;
  visibility: visible;
  transform: scale(1);
}

.home-grid-box-big > a > i,
.home-grid-box-small > a > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease-in-out;
}

.home-grid-box-big > a:hover > i,
.home-grid-box-small > a:hover > i {
  opacity: 1;
  visibility: visible;
}
