@import url("style.css");

/* esra-OC-6-implement-promo-banner-start */
.implement-promo-banner {
  width: 100%;
  background-color: black;
  font-family: var(--fnt-family-satoshi);
  white-space: nowrap;
}
.ip-banner-info-box {
  height: 38px;
  max-width: 1350px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  white-space: nowrap;
  gap: 10px;
}
.ip-banner-explain {
  font-size: clamp(12px, 4vw, 16px);
  font-weight: 400;
  line-height: 18.9px;
  text-decoration-style: solid;
  white-space: nowrap;
}
.ip-banner-explain2 {
  font-size: clamp(12px, 4vw, 16px);
  font-weight: 500;
  line-height: 18.9px;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 10px;
  white-space: nowrap;
}
.banner_close_icon {
  display: inline-flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 550px) {
  .implement-promo-banner {
    flex-direction: row;
    height: auto;
    padding: 10px 20px;
  }
  .ip-banner-info-box {
    flex-direction: row;
    text-align: center;
    gap: 10px;
  }
  .ip-banner-explain,
  .ip-banner-explain2 {
    font-size: clamp(10px, 3vw, 14px);
  }
  .banner_close_icon {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 280px) {
  .ip-banner-info-box {
    flex-direction: column;
    text-align: center;
  }
  .ip-banner-explain,
  .ip-banner-explain2 {
    font-size: clamp(8px, 5vw, 10px);
  }
  .banner_close_icon {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 550px) {
  .banner_close_icon {
    display: none;
  }
}
/* esra-OC-6-implement-promo-banner-end */

/* nursahtuncel-OC-4-Desing-the-Header-Section start */
.nt-hero-section {
  width: 100%;
  padding: 35px 0;
  display: flex;
  position: relative;
}
.nt-hero-section-content {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

.nt-hero-section-content-ul ul {
  margin: 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 24px);
}

.nt-logo {
  display: flex;
  gap: 10px;
  font-family: var(--fnt-family-integral);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 700;
  line-height: 38.4px;
  text-align: left;
}
.nt-list {
  white-space: nowrap;
  font-family: var(--fnt-family-satoshi);
  font-size: clamp(8px 9vw 16px);
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
  color: var(--hdr-bg-clr);
  position: relative;
}

.nt-list::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: black;
  color: black;
  left: 40%;
  bottom: -10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nt-list:hover::before {
  font-weight: bold;
  opacity: 1;
}
.nt-list:hover {
  font-weight: bold;
  transition: 0.3s ease-out;
}
.nt-icons:hover {
  cursor: pointer;
}
.nt-hero-section-search-box {
  display: flex;
  align-items: center;
  background-color: rgba(240, 240, 240, 1);
  max-width: 577px;
  width: 100%;
  height: 48px;
  border-radius: 62px;
  padding: 15px;
}

.nt-hero-section-search-box i {
  font-size: 20px;
  margin-right: 10px;
  color: #aaa;
}

.nt-hero-section-search-box input {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  font-size: 16px;
  color: #555;
}
.nt-hero-section-search-box input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.nt-icons {
  padding-left: 15px;
}
.nt-left-icon {
  padding-right: 7px;
}
.nt-left-icon-2 {
  display: none;
}
.nt-hamburger-menu-icon {
  display: none;
  padding-top: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.nt-hamburger-menu-icon.active .nt-hamburger-menu-2 {
  opacity: 1;
}
.nt-menu-container {
  display: flex;
  align-items: center;
}
.nt-hamburger-menu-2 {
  opacity: 0;
  position: relative;
  top: 0;
  background-color: #5c6a7930;
  width: 100%;
  height: 100%;
  transition: all 250ms ease-in-out;
}
.nt-hamburger-menu-2.active {
  opacity: 1;
}
.navbar_items {
  display: none;
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
  height: 100%;
  background-color: white;
  position: relative;
  transition: all 250ms ease-in;
}
.nt-hamburger-menu-2.active .navbar_items {
  width: 100%;
  display: inline-block;
}

.navbar_items ul li {
  width: 80%;
  margin: auto;
  border: 1px solid black;
  margin-top: 20px;
  padding: 10px 50px;
  text-align: center;
}
.navbar_items ul li {
  cursor: pointer;
  font-family: var(--fnt-family-satoshi);
  font-size: clamp(8px 9vw 16px);
  font-weight: 600;
  line-height: 21.6px;
  color: var(--hdr-bg-clr);
}
.navbar_items ul li a:hover,
.navbar_items ul li:hover {
  background-color: black;
  color: white;
}
.nt-secret-search-box {
  opacity: 0;
  position: absolute;
  top: 75px;
  right: 5vw;
  cursor: pointer;
  display: flex;
  display: flex;
  align-items: center;
  background-color: rgba(240, 240, 240, 1);
  max-width: 0;
  width: 100%;
  height: 48px;
  border-radius: 62px;
  padding: 15px;
  transition: all 400ms ease-in-out;
  z-index: 2;
}
.nt-secret-search-box.active {
  opacity: 1;
  max-width: 400px;
}
.nt-secret-search-box input {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  font-size: 16px;
  color: #555;
}

@media screen and (max-width: 820px) {
  .nt-search-icon {
    display: inline-block;
  }
  .nt-hero-section-search-box {
    display: none;
  }
}
@media screen and (max-width: 660px) {
  .nt-list-2 {
    display: none;
  }
  .nt-hamburger-menu-icon {
    display: inline-block;
  }

  .nt-hamburger-menu {
    display: inline-block;
  }
  .nt-hamburger-menu-icon {
    display: inline-block;
  }
  .nt-left-icon-2 {
    display: inline-block;
  }
}
@media screen and (min-width: 660px) {
  .nt-hamburger-menu-2 {
    display: none;
  }
}

/* nursahtuncel-OC-4-Desing-the-Header-Section end*/

.main-design-container {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}

.main-design {
  display: flex;
  gap: 20px;
  position: relative;
  justify-content: center;
}

/*pages-way Start*/

.pages-way {
  display: flex;
  padding: 20px 0px;
}

.pages-way p {
  font-family: var(--fnt-family-satoshi);
  font-weight: 400;
  font-size: 16px;
  color: var(--hdr-bg-clr);
}

.pages-way p:first-child {
  color: rgba(0, 0, 0, 0.6);
  padding-right: 4px;
}

.pages-way img {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

/*pages-way End*/

/* Category Filter Section Start*/
.category-filter {
  display: flex;
  flex-direction: column;
  width: 295px;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px 24px;
  gap: 24px;
  background-color: var(--wht-clr);
}

.cf-main-filter {
  display: flex;
  justify-content: space-between;
}

.cf-main-filter h6 {
  font-family: var(--fnt-family-satoshi);
  font-weight: 700;
  font-size: 20px;
}

.cf-main-filter img {
  cursor: pointer;
}

.cf-drop-down-filter {
  display: none;
}

.cf-drop-down-filter.active {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--wht-clr);
}

.cf-product-container {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.cf-product-container ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.cf-product-container ul li {
  display: flex;
  justify-content: space-between;
  font-family: var(--fnt-family-satoshi);
  font-weight: 400;
  font-size: 16px;
  color: var(--hdr-bg-clr);
  opacity: 60%;
  align-items: center;
  cursor: pointer;
}

.cf-product-styles ul li img {
  width: 16px;
  height: 16px;
}

.cf-price-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.cf-price-container h6 {
  font-family: var(--fnt-family-satoshi);
  color: var(--hdr-bg-clr);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.cf-price {
  display: none;
}

.cf-price.active {
  display: flex;
  position: relative;
  width: 100%;
  height: 40px;
  align-items: center;
  padding-bottom: 20px;
}

.cf-price-img {
  transition: transform 0.3 ease;
}

.cf-price-img.rotate {
  transform: rotate(180deg);
}

.cf-price-double-input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 6px;
  border-radius: 20px;
  background-color: var(--ftr-imgs-bg-clr);
}

.cf-input-track {
  position: absolute;
  z-index: 2;
  left: 0%;
  right: 0%;
  height: 100%;
  border-radius: 5px;
  background-color: var(--hdr-bg-clr);
}

.price-input[type="range"] {
  position: absolute;
  width: 100%;
  background-color: transparent;
  pointer-events: none;
  appearance: none;
  outline: none;
  z-index: 3;
}

.price-input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: -7px;
  background-color: var(--hdr-bg-clr);
  pointer-events: auto;
  z-index: 3;
  cursor: pointer;
  left: 25%;
  right: 25%;
}

.price-input[type="range"]::-moz-range-thumb {
  -moz-appearance: none;
  width: 20px;
  height: 50px;
  border-radius: 50%;
  margin-top: -7px;
  background-color: var(--hdr-bg-clr);
  pointer-events: auto;
  cursor: pointer;
}

.price-input[type="range"]::-ms-thumb {
  -ms-progress-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--hdr-bg-clr);
  pointer-events: auto;
  cursor: pointer;
}

.price-tag {
  position: absolute;
  display: block;
}

#minPrice {
  transform: translateX(-18px) translateY(100%);
}

#maxPrice {
  transform: translateY(-150%);
}

.cf-colors-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.cf-colors {
  display: none;
}

.cf-colors.active {
  display: flex;
}

.cf-colors-img {
  transition: transform 0.3 ease;
}

.cf-colors-img.rotate {
  transform: rotate(180deg);
}

.cf-colors-row {
  display: flex;
  justify-content: space-between;
}

.cf-colors-title {
  cursor: pointer;
}

.cf-colors-container div h6 {
  display: flex;
  justify-content: space-between;
  font-family: var(--fnt-family-satoshi);
  font-weight: 700;
  font-size: 20px;
  color: var(--hdr-bg-clr);
}

.cf-colors {
  flex-direction: column;
  gap: 16px;
}

.cf-color-btn {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 2px solid;
  border-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#cf-color-btn-a {
  background-color: #00c12b;
}

#cf-color-btn-b {
  background-color: #f50606;
}

#cf-color-btn-c {
  background-color: #f5dd06;
}

#cf-color-btn-d {
  background-color: #f57906;
}

#cf-color-btn-e {
  background-color: #06caf5;
}

#cf-color-btn-f {
  background-color: #063af5;
}

#cf-color-btn-g {
  background-color: #7d06f5;
}

#cf-color-btn-h {
  background-color: #f506a4;
}

#cf-color-btn-i {
  background-color: #ffffff;
}

#cf-color-btn-j {
  background-color: #000000;
}

.cf-size-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 10px;
}

.cf-size-title {
  cursor: pointer;
}

.cf-size-title h6 {
  display: flex;
  justify-content: space-between;
  font-family: var(--fnt-family-satoshi);
  font-weight: 700;
  font-size: 20px;
  color: var(--hdr-bg-clr);
}

.cf-sizes-img {
  transition: transform 0.3 ease;
}

.cf-sizes-img.rotate {
  transform: rotate(180deg);
}

.cf-sizes {
  display: none;
}

.cf-sizes.active {
  display: block;
  gap: 8px;
}

.cf-sizes button {
  font-family: var(--fnt-family-satoshi);
  font-weight: 400;
  font-size: 14px;
  background-color: var(--ftr-imgs-bg-clr);
  padding: 10px 20px;
  border: none;
  border-radius: 62px;
  margin-bottom: 8px;
  cursor: pointer;
}

.cf-sizes button:hover {
  background-color: var(--hdr-bg-clr);
  color: var(--wht-clr);
}

.filter-btn {
  font-family: var(--fnt-family-satoshi);
  font-weight: 500;
  font-size: 14px;
  background-color: var(--hdr-bg-clr);
  color: var(--wht-clr);
  padding: 16px 54px;
  border: none;
  border-radius: 62px;
  cursor: pointer;
}

.filter-btn:hover {
  font-size: 16px;
}

/* Category Filter Section End*/

/* Category Filter Section Responsiveness Start*/
@media (max-width: 700px) {
  .category-filter {
    position: absolute;
    right: 0;
    top: 15px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);
    width: fit-content;
    border-radius: 50%;
    padding: 8px;
  }

  .category-filter.active {
    z-index: 999;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    gap: 24px;
  }

  .cf-main-filter {
    display: flex;
    justify-content: end;
    padding-bottom: 0px;
  }

  .cf-main-filter h6 {
    display: none;
  }

  .cf-main-filter img {
    width: 16px;
    height: 16px;
    cursor: pointer;
  }
}

/* Category Filter Section Responsiveness End*/

/* melikeaksoy/OC-36-Category-Products-Section start */

.category-page {
  display: flex;
  flex-direction: column;
  padding: 10px;
  max-width: 925px;
  width: 100%;
  gap: 30px;
  font-family: var(--fnt-family-satoshi);
}

.category-page h1 {
  font-size: 32px;
  font-weight: bold;
}

.category-page-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.page-title-right {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-title-right,
.title-sort {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

#sort-options {
  border: none;
  font-size: 16px;
}

.category-page .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  justify-content: center;
  max-width: 925px;
}

.category-page .product {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  max-width: 295px;
  cursor: pointer;
}

.category-page .image-container {
  width: 295px;
  height: 298px;
  padding: 45px;
  background-color: #f0eeed;
  border-radius: 20px;
}

.category-page-image {
  transition: transform 0.5s;
  cursor: pointer;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}

.category-page-image:hover {
  transform: scale(1.1);
}

.category-page h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  font-size: 20px;
  margin-top: 16px;
}

.nt-stars-and-puan {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.product .stars {
  margin-right: 13px;
  display: flex;
}

.product .point-stars {
  font-size: 16px;
  line-height: 18.9px;
  font-weight: 400;
}

.product .star {
  width: 20px;
  height: 20px;
  background-color: gray;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  margin-right: 5px;
}

.star.full {
  background-color: #ffc633;
}

.star.half {
  background: linear-gradient(to right, #ffc633 50%, #dad0cc 50%);
}
.star.empty {
  background-color: #dad0cc;
}

.category-page .price {
  display: flex;
  align-items: center;
}

.category-page .original-price {
  font-weight: bold;
  font-size: 24px;
}

.category-page .discount {
  width: 58px;
  height: 28px;
  padding: 6px 14px;
  background: rgba(255, 51, 51, 0.1);
  color: rgba(255, 51, 51, 1);
  border-radius: 62px;
  font-size: 12px;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  width: 100%;
  max-width: 925px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  cursor: pointer;
  padding: 12px;
}

.category-page button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  width: 110px;
  height: 36px;
  border-radius: 8px;
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  cursor: pointer;
  padding: 8px 14px;
}
.page-numbers span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 5px;
}

.page-numbers button.current {
  background-color: grey;
  color: white;
}

.page-numbers button:hover {
  background-color: lightgrey;
}

@media screen and (max-width: 1260px) {
  .category-page h1 {
    font-size: 28px;
    margin: 10px auto 80px auto;
  }

  .category-page .products {
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
  }

  .pagination {
    gap: 100px;
  }

  .category-page button {
    width: 90px;
    height: 32px;
  }

  .page-numbers {
    width: 35px;
    height: 35px;
    padding: 10px;
  }
}

@media screen and (max-width: 940px) {
  .category-page {
    margin: 10px auto 50px auto;
  }

  .category-page h1 {
    font-size: 22px;
  }
  .page-title-right,
  .title-sort {
    font-size: 14px;
    justify-content: center;
  }
  .category-page h2 {
    font-size: 16px;
  }

  .category-page .original-price,
  .category-page .current-price {
    font-size: 20px;
  }

  .category-page .discount {
    width: 50px;
    height: 20px;
  }

  .category-page .products {
    grid-template-columns: 1fr;
  }
  .pagination {
    gap: 5px;
    flex-direction: column;
  }
}

/* melikeaksoy/OC-36-Category-Products-Section end*/

/* BeyzanurMete-OC-20-Implement-the-Newsletter-Section start*/
.newsletter-section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 36px 64px;
  display: flex;
  justify-content: space-between;
  background-color: #000000;
  border-radius: 20px;
  border: 1px solid #ccc;
  opacity: 1;
  box-sizing: border-box;
  margin-top: 80px;
}
.newsletter-title {
  font-family: var(--fnt-family-integral);
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.newsletter-input {
  height: 48px;
  font-size: 16px;
  padding: 10px 10px 10px 50px;
  box-sizing: border-box;
  border-radius: 62px;
  border: 1px solid #ccc;
}
.input-icon {
  position: absolute;
  top: 15px;
  left: 16px;
  max-width: 24px;
}
.newsletter-button {
  height: 48px;
  font-size: 16px;
  background-color: #f7f6f6;
  color: #000000;
  border-radius: 62px;
  line-height: 21.6px;
}
@media (max-width: 1000px) {
  .newsletter-section {
    flex-direction: column;
  }
}
/* BeyzanurMete-OC-20-Implement-the-Newsletter-Section End*/

/* melikeaksoy/OC-22-implement-the-footer start */

.newsletter-section {
  margin-top: 80px;
  position: relative;
  z-index: 10;
  margin-bottom: -90px;
  width: 80%;
}

footer {
  background-color: var(--ftr-imgs-bg-clr);
  padding: 50px 100px;
  font-family: var(--fnt-family-satoshi);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  padding-top: 140px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  align-items: center;
}

.footer-logo h2 {
  font-weight: 700;
  font-family: var(--fnt-family-integral);
  font-size: 33.45px;
  line-height: 40.15px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 6vw, 113px);
  width: 90%;
  max-width: 1440px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo p {
  max-width: 248px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-column h4 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: clamp(10px, 2vw, 40px);
}

.footer-right {
  display: flex;
  gap: clamp(10px, 6vw, 113px);
}

.footer-separator {
  width: 90%;
  max-width: 1440px;
  border-top: 1px solid #ddd;
  margin: 50px 0 25px;
}

.footer-bottom {
  width: 90%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}

.footer-column {
  max-width: 149px;
  min-width: 130px;
}

.footer-column ul li a {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--fnt-black);
  margin-top: clamp(10px, 2vw, 25px);
}

.footer-column a:last-child {
  margin-bottom: 0;
}

.payment-icons {
  text-align: center;
}

/* melikeaksoy/OC-22-implement-the-footer end */

/* melikeaksoy/OC-23-implement-the-footer start */

@media (max-width: 1300px) and (min-width: 1000px) {
  .footer-wrapper {
    justify-content: center;
    padding: 0 15px;
  }
  .footer-container {
    gap: clamp(5px, 3vw, 50px);
  }
  .footer-right {
    gap: clamp(5px, 3vw, 50px);
  }
  .footer-column {
    min-width: 90px;
  }
  .newsletter-section {
    margin-bottom: -95px;
  }
  .newsletter-title {
    font-size: 33.45px;
  }
}

@media (max-width: 1130px) and (min-width: 1000px) {
  .newsletter-section {
    margin-bottom: -95px;
  }
}

@media (max-width: 1000px) {
  footer {
    padding: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-column {
    width: 40%;
    margin: 0 auto;
  }

  .footer-separator {
    margin: 25px 0 15px;
  }

  .footer-logo h2 {
    font-size: 25px;
  }

  .newsletter-title {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .footer-column h4 {
    font-size: 14px;
  }

  .footer-logo p,
  .footer-bottom p,
  .footer-column ul li a {
    font-size: 12px;
  }

  .footer-column {
    max-width: 250px;
  }

  .payment-icons img {
    max-width: 46px;
  }
  .newsletter-section {
    margin-bottom: -150px;
  }

  footer {
    padding-top: 200px;
  }

  .newsletter-section {
    margin-bottom: -160px;
  }
}

@media (max-width: 1000px) and (min-width: 800px) {
  .newsletter-section {
    margin-bottom: -130px;
  }
}
@media (max-width: 800px) and (min-width: 58px) {
  .newsletter-section {
    margin-bottom: -140px;
  }
}

@media (max-width: 580px) and (min-width: 490px) {
  .newsletter-section {
    margin-bottom: -150px;
  }
}
@media (max-width: 490px) {
  .newsletter-section {
    margin-bottom: -170px;
  }
}
/* melikeaksoy/OC-23-implement-the-footer end */
