@import url("./fonts.css");
@import url("./reset.css");

/* hekimcan/header-start */
.header-wrapper {
  background-color: #1e28320d;
  padding: 20px;
}

.header {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 30px;
  position: relative;
}

.top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.horizontal-bar {
  border: none;
  height: 2px;
  background-color: #e3e3e3;
}

.only-desktop {
  display: flex;
}
.only-mobile {
  display: none;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.hamburger-menu span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* HAMBURGER MENU TRANSITION TO X */
#menu-toggle:checked + .hamburger-menu span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 6px);
}
#menu-toggle:checked + .hamburger-menu span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .hamburger-menu span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar {
  display: flex;
  flex-direction: column; /* Default: Mobile view */
  gap: 20px;
  align-items: center;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
}

.navbar a {
  color: #000;
  text-decoration: none;
}

#menu-toggle:checked ~ .navbar {
  max-height: 500px; /* Can be adjusted based on menu height */
  opacity: 1;
  transform: translateY(0);
}

.menu-icons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.menu-icons .auth-wrapper {
  gap: 20px;
}

.auth-wrapper {
  display: flex;
  gap: 30px;
}

.auth-wrapper .container {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  .only-desktop {
    display: none;
  }
  .only-mobile {
    display: flex;
  }
}

@media (min-width: 768px) {
  .navbar {
    flex-direction: row; 
    justify-content: center;
    gap: 30px; 
    max-height: none; 
    transform: none;
    opacity: 1;
  }

  .only-mobile {
    display: none; 
  }

  #menu-toggle {
    display: none; 
  }

  .hamburger-menu {
    display: none; 
  }
}
/* hekimcan/header-end */

/*pelin/hero-section-----start */
.hero-section {
  position: relative;
  font-family: "Roboto", sans-serif;
  background-color: #1e28320d;
  display: flex;
  justify-content: center;
}

.hero-section .hero {
  position: relative;
  max-width: 76.626em;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4em;
  margin-inline: auto;
  margin-block: 4em;
}
.hero-section .hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4em;
}
.hero-section .hero .hero-content h1 {
  font-size: 4.625em;
  font-weight: 300;
}

.hero-section .hero .hero-content p {
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 400;
}

.hero-section .hero .hero-content .hero-btn {
  width: 13.75em;
  height: 4.5em;
  border: none;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e2832;
  gap: 0.3em;
}
.hero-section .hero .hero-content .hero-btn a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.9em;
  font-weight: 400;
  text-align: left;
}
.hero-section .hero .hero-image {
  position: relative;
}

.hero-section .hero .hero-image .image-top {
  border-bottom-right-radius: 10em;
  border-top-left-radius: 10em;
}
.hero-section .hero .hero-image .image-bottom {
  border-bottom-right-radius: 10em;
  border-top-left-radius: 10em;
  position: absolute;
  right: -1.125em;
  bottom: -1.125em;
  z-index: -2;
}
.hero-section .hero-frame-1 {
  position: absolute;
  bottom: 7.5em;
  right: 0;
  z-index: -5;
}
.hero-section .hero-frame-2 {
  position: absolute;
  bottom: 2.5em;
  left: 0;
  z-index: -5;
}

@media only screen and (max-width: 1440px) {
  .hero-section {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1280px) {
  .hero-section {
    font-size: 12px;
  }
  .hero-section .hero .hero-image .image-top {
    border-bottom-right-radius: 12em;
    border-top-left-radius: 12em;
  }
  .hero-section .hero .hero-image .image-bottom {
    border-bottom-right-radius: 12em;
    border-top-left-radius: 12em;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-section {
    font-size: 10px;
  }
  .hero-section .hero .hero-content p {
    font-size: 2.5em;
  }
  .hero-section .hero .hero-image .image-top {
    width: 40em;
  }
  .hero-section .hero .hero-image .image-bottom {
    width: 40em;
    right: -2em;
    bottom: -2em;
  }
}

@media only screen and (max-width: 900px) {
  .hero-section .hero {
    flex-direction: column-reverse;
  }
  .hero-section .hero {
    align-items: flex-start;
    padding-inline: 5em;
  }

  .hero-section .hero-frame-1 {
    top: 15em;
  }
  .hero-section .hero-frame-2 {
    bottom: 1em;
  }
}

@media only screen and (max-width: 768px) {
  .hero-section {
    font-size: 8px;
  }
  .hero-section .hero .hero-content .hero-btn {
    width: 12em;
    height: 3.5em;
  }
  .hero-section .hero .hero-content .hero-btn a {
    font-size: 1.5em;
  }
}

@media only screen and (max-width: 480px) {
  .hero-section {
    font-size: 6px;
  }
  .hero-section .hero .hero-content .hero-btn {
    width: 10em;
    height: 3em;
  }
  .hero-section .hero .hero-content .hero-btn img {
    width: 2em;
  }
  .hero-section .hero .hero-content .hero-btn a {
    font-size: 1.2em;
  }
}

/*pelin/hero-section-----end */
.brand-logos {
  max-width: 1320px;
  margin: 90px 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1440px) {
  .brand-logos {
    max-width: 1320px;
    margin: 90px auto;
  }
}

@media only screen and (max-width: 1280px) {
  .brand-logos {
    max-width: 1024px;
    margin: 70px auto;
  }
  .brand-logos .brand-logo-img {
    width: 185px;
    height: 65px;
  }
}

@media only screen and (max-width: 1024px) {
  .brand-logos {
    max-width: 850px;
    margin: 60px auto;
  }
  .brand-logos .brand-logo-img {
    width: 157px;
    height: 55px;
  }
}

@media only screen and (max-width: 900px) {
  .brand-logos {
    max-width: 700px;
    margin: 50px auto;
  }
  .brand-logos .brand-logo-img {
    width: 142px;
    height: 50px;
  }
}

@media only screen and (max-width: 720px) {
  .brand-logos {
    max-width: 600px;
    margin: 40px auto;
  }
  .brand-logos .brand-logo-img {
    width: 114px;
    height: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .brand-logos {
    max-width: 500px;
    margin: 30px auto;
  }

  .brand-logos .brand-logo-img {
    width: 100px;
    height: 35px;
  }
}

@media only screen and (max-width: 510px) {
  .brand-logos {
    max-width: 400px;
    margin: 20px auto;
  }
  .brand-logos .brand-logo-img {
    width: 85px;
    height: 30px;
  }
}

@media only screen and (max-width: 470px) {
  .brand-logos {
    max-width: 350px;
    margin: 20px auto;
    display: inline;
    display: flow-root;
  }
}


.grid {
  width: 1320px;
  max-width: 100%;
  margin: 100px auto;
}

.grid .title .main-title {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-weight: 500;
  text-transform: capitalize;
}

.grid .hed-full {
  width: 1320px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
  margin: 35px auto 35px auto;
  text-transform: capitalize;
}

.grid .hed-full .hed-left {
  width: 373px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid .hed-full .hed-left .hed1 {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.grid .hed-full .hed-left .hed2 {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.grid .hed-full .hed-right .btn {
  background: #1e2832;
  display: flex;
  padding: 5px 15px;
  align-items: center;
  gap: 4px;
  border: none;
}

.grid .hed-full .hed-right .btn a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.grid .container {
  width: 1320px;
  max-width: 100%;
  display: grid;
  row-gap: 18px;
  column-gap: 24px;
  grid-template-columns: auto auto auto auto;
}

.product-grid {
  width: 100%;
  height: 100%;
  position: relative;
}

.tag-background-1 {
  width: 52px;
  height: 24px;
  position: absolute;
  background: #ff6f61;
  margin: 22px 260px 354px 0px;
}

.tag-background-2 {
  width: 52px;
  height: 24px;
  position: absolute;
  background: #000;
  margin: 22px 260px 354px 0px;
}

.tag-1 {
  width: 28px;
  height: 16px;
  position: absolute;
  margin: 26px 272px 358px 12px;
  text-align: center;
  color: white;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  word-wrap: break-word;
}

.tag-2 {
  width: 28px;
  height: 16px;
  position: absolute;
  margin: 26px 272px 358px 12px;
  text-align: center;
  color: white;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  word-wrap: break-word;
}

.grid .container .product-item .product-image {
  display: flex;
  width: 312px;
  height: 400px;
}

.grid .container .product-item .product-info .product-name {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 18px 0px 16px 0px;
}

.grid .container .product-info .product-meta {
  display: flex;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
  margin: auto 10px;
}

.grid .container .product-info .product-meta .product-category {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  text-transform: capitalize;
}

.grid .container .product-info .product-meta .product-price {
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
}

.grid .container .product-info .product-meta .price1-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  text-transform: capitalize;
}

.grid .container .product-info .product-meta .product-price-bef {
  width: 52px;
  height: 19px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  text-decoration: line-through;
  margin: 2px 12px 1px 0px;
}

.grid .container .product-info .product-meta .product-price-discount {
  width: 60px;
  height: 22px;
  color: #ff6f61;
  font-size: 16px;
}

.brand-banner {
  background-color: #010204;
  max-width: 1920px;
  display: flex;
  margin-inline: auto;
  justify-content: center;
  background-image: url("/images/brand-banner/brand-background.png");
  background-size: cover;
  position: relative;
  height: 776px;
  overflow: hidden;
}
.brand-banner .zara-logo-2 {
  position: absolute;
  top: 233px;
  left: 1083px;
  width: 191px;
  height: 81px;
}
.brand-banner .zara-logo-1 {
  position: absolute;
  width: 732px;
  height: 309px;
  top: 51px;
  left: 1210px;
}
.brand-banner .brand-desc p {
  font-family: "Roboto", sans-serif;
  text-align: justify;
  position: absolute;
  width: 504px;
  height: 187px;
  top: 369px;
  left: 1083px;
  color: white;
  font-size: 26px;
  line-height: 40px;
  overflow: hidden;
}
.brand-banner .see-collection {
  text-align: center;
  font-size: 29px;
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 611px;
  left: 1083px;
  padding: 19px 26px 19px 26px;
  overflow: hidden;
}
@media only screen and (max-width: 1600px) {
  .brand-banner {
    max-width: 1600px;
    background-size: 1600px;
    background-repeat: no-repeat;
    height: 580px;
  }
  .brand-banner .zara-logo-2 {
    top: 223px;
    left: 783px;
    width: 151px;
    height: 51px;
  }
  .brand-banner .zara-logo-1 {
    width: 582px;
    height: 229px;
    top: 61px;
    left: 880px;
  }
  .brand-banner .brand-desc p {
    width: 344px;
    height: 107px;
    top: 309px;
    left: 783px;
    font-size: 15px;
    line-height: 20px;
  }
  .brand-banner .see-collection {
    font-size: 15px;
    top: 461px;
    left: 783px;
    padding: 19px 26px 19px 26px;
  }
}
@media only screen and (max-width: 1155px) {
  .brand-banner {
    max-width: 1090px;
    background-size: 1090px;
    background-repeat: no-repeat;
    height: 400px;
  }
  .brand-banner .zara-logo-2 {
    top: 123px;
    left: 483px;
    width: 91px;
    height: 41px;
  }
  .brand-banner .zara-logo-1 {
    width: 382px;
    height: 159px;
    top: 41px;
    left: 520px;
  }
  .brand-banner .brand-desc p {
    width: 244px;
    height: 77px;
    top: 209px;
    left: 483px;
    font-size: 14px;
    line-height: 16px;
  }
  .brand-banner .see-collection {
    font-size: 14px;
    top: 301px;
    left: 483px;
  }
}
@media only screen and (max-width: 768px) {
  .brand-banner {
    max-width: 768px;
    background-size: 768px;
    background-repeat: no-repeat;
    height: 300px;
  }
  .brand-banner .zara-logo-2 {
    top: 93px;
    left: 383px;
    width: 91px;
    height: 31px;
  }
  .brand-banner .zara-logo-1 {
    width: 352px;
    height: 119px;
    top: 13px;
    left: 410px;
  }
  .brand-banner .brand-desc p {
    width: 204px;
    height: 60px;
    top: 139px;
    left: 383px;
    font-size: 13px;
    line-height: 16px;
  }
  .brand-banner .see-collection {
    font-size: 16px;
    top: 221px;
    left: 383px;
    padding: 14px 20px 14px 20px;
  }
}
@media only screen and (max-width: 608px) {
  .brand-banner {
    max-width: 608px;
    background-size: 608px;
    background-repeat: no-repeat;
    height: 190px;
  }
  .brand-banner .zara-logo-2 {
    top: 060px;
    left: 233px;
    width: 51px;
    height: 18px;
  }
  .brand-banner .zara-logo-1 {
    width: 252px;
    height: 99px;
    top: 13px;
    left: 300px;
  }
  .brand-banner .brand-desc p {
    width: 204px;
    height: 60px;
    top: 85px;
    left: 233px;
    font-size: 12px;
    line-height: 10px;
  }
  .brand-banner .see-collection {
    font-size: 12px;
    top: 151px;
    left: 233px;
    padding: 5px 10px 5px 10px;
  }
}
@media only screen and (max-width: 460px) {
  .brand-banner {
    max-width: 460px;
    background-size: 460px;
    background-repeat: no-repeat;
    height: 190px;
  }
  .brand-banner .zara-logo-2 {
    top: 060px;
    left: 185px;
    width: 51px;
    height: 18px;
  }
  .brand-banner .zara-logo-1 {
    width: 200px;
    height: 70px;
    top: 13px;
    left: 220px;
  }
  .brand-banner .brand-desc p {
    width: 204px;
    height: 60px;
    top: 85px;
    left: 185px;
    font-size: 12px;
    line-height: 10px;
  }
  .brand-banner .see-collection {
    font-size: 12px;
    top: 131px;
    left: 185px;
    padding: 5px 10px 5px 10px;
  }
}
@media only screen and (max-width: 410px) {
  .brand-banner {
    max-width: 410x;
    background-size: 410px;
    background-repeat: no-repeat;
    height: 190px;
  }
  .brand-banner .zara-logo-2 {
    top: 60px;
    left: 155px;
    width: 51px;
    height: 18px;
  }
  .brand-banner .zara-logo-1 {
    width: 180px;
    height: 80px;
    top: 13px;
    left: 200px;
  }
  .brand-banner .brand-desc p {
    width: 204px;
    height: 60px;
    top: 85px;
    left: 155px;
    font-size: 12px;
    line-height: 10px;
  }
  .brand-banner .see-collection {
    font-size: 12px;
    top: 131px;
    left: 155px;
    padding: 5px 10px 5px 10px;
  }
}
@media only screen and (max-width: 380px) {
  .brand-banner {
    max-width: 380x;
    background-size: 380px;
    background-repeat: no-repeat;
    height: 150px;
  }
  .brand-banner .zara-logo-2 {
    top: 50px;
    left: 125px;
    width: 41px;
    height: 18px;
  }
  .brand-banner .zara-logo-1 {
    width: 180px;
    height: 80px;
    top: 13px;
    left: 160px;
  }
  .brand-banner .brand-desc p {
    width: 204px;
    height: 60px;
    top: 75px;
    left: 125px;
    font-size: 12px;
  }
  .brand-banner .see-collection {
    font-size: 12px;
    top: 120px;
    left: 125px;
    padding: 5px 10px 5px 10px;
  }
}
@media only screen and (max-width: 355px) {
  .brand-banner {
    max-width: 320x;
    background-size: 320px;
    background-repeat: no-repeat;
    height: 150px;
  }
  .brand-banner .zara-logo-2 {
    top: 40px;
    left: 115px;
    width: 41px;
    height: 18px;
  }
  .brand-banner .zara-logo-1 {
    width: 180px;
    height: 80px;
    top: 8px;
    left: 140px;
  }
  .brand-banner .brand-desc p {
    width: 150px;
    height: 50px;
    top: 65px;
    left: 115px;
    font-size:10px;
  }
  .brand-banner .see-collection {
    font-size: 10px;
    top: 120px;
    left: 115px;
    padding: 5px 10px 5px 10px;
  }
}
/*pelin/best-sellers-carousel-----start*/
.slider-products {
  width: 100%;
  max-width: 82.5em;
  height: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2em;
  margin-block: 9.3em;
  font-family: "Open Sans", sans-serif;
}
.slider-products h2 {
  font-family: "Roboto", sans-serif;
  font-size: 3.125em;
  font-weight: 500;
}
.slider-products .nav-products {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-products .nav-products .category-links {
  display: flex;
  align-items: center;
  gap: 2.5em;
}
.slider-products .nav-products li a {
  font-weight: 600;
  text-align: left;
  color: #00000080;
}
.slider-products .nav-products .category-links :first-child a {
  color: #000000;
}
.slider-products .nav-products .show-all-btn {
  border: none;
  background-color: #1e2832;
  padding: 0.5em 1em;
}
.slider-products .nav-products .show-all-btn a {
  font-weight: 400;
  color: #ffffff;
}

.slider-products .slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.slider-products .slider .product-card {
  height: 26em;
}
.slider-products .slider .product-card img {
  width: 19.5em;
  height: 25em;
}
.slider-products .slider .product-card.card-1 {
  opacity: 0.3;
}
.slider-products .slider .product-card .product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-inline: 0.6em;
  padding-block: 0.6em;
  gap: 0.6em;
}
.slider-products .slider .product-card .product-details .product-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-products .slider .product-card .product-details .product-meta span {
  justify-items: right;
}
.slider-products .slider .product-card .product-details h4 {
  color: #000000;
  font-weight: 600;
}

.slider-products .slider .product-card .product-details .product-meta .category {
  color: #00000080;
}
.slider-products .slider .product-card .product-details .product-meta .price {
  font-weight: 600;
  color: #000000;
}
.slider-products .slider .product-card .product-details .product-meta .price-sales {
  color: #ff6f61;
  display: flex;
  font-weight: 600;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.6em;
}
.slider-products .slider .product-card .product-details .product-meta .price-sales span {
  color: #00000080;
  font-size: 0.875em;
  text-decoration: line-through;
}
.slider-products .slider .slider-nav-btn {
  position: absolute;
  top: 30%;
  transform: translateY(60%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

@media only screen and (max-width: 1440px) {
  .slider-products {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1280px) {
  .slider-products {
    font-size: 12px;
    padding-inline: 0.5em;
  }
  .slider-products h2 {
    font-size: 4em;
  }
  .slider-products .nav-products li a,
  .slider-products .nav-products .show-all-btn a,
  .slider-products .slider .product-card .product-details {
    font-size: 1.3em;
  }
}

@media only screen and (max-width: 1024px) {
  .slider-products {
    font-size: 10px;
  }
  .slider-products .nav-products li a,
  .slider-products .slider .product-card .product-details {
    font-size: 1.5em;
  }
}

@media only screen and (max-width: 900px) {
  .slider-products {
    font-size: 12px;
    width: fit-content;
  }

  .slider-products .nav-products {
    justify-content: space-around;
  }

  .slider-products .slider .product-card.card-4 {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .slider-products {
    font-size: 10px;
  }
  .slider-products .nav-products {
    gap: 4em;
  }
  .slider-products .nav-products .show-all-btn a {
    font-size: 1.1em;
  }
  .slider-products .slider .product-card.card-1 {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .slider-products {
    padding-inline: 3em;
  }
  .slider-products h2 {
    text-align: center;
  }
  .slider-products .nav-products {
    flex-direction: column;
  }
  .slider-products .nav-products .category-links {
    display: grid;
    grid-template-areas:
      "link1 link2"
      "link3 link4";
  }
  .slider-products .slider {
    width: 20em;
  }
  .slider-products .slider .product-card.card-3 {
    display: none;
  }
}

/*pelin/best-sellers-carousel-----end*/

.newsletter {
  display: flex;
  max-width: 1794px;
  background-color: #1e28320d;
  padding: 100px 300px;
  margin: 100px auto;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.newsletter .newstitel {
  color: var(--Dark, #000);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-weight: 500;
  text-transform: capitalize;
}

.newsletter .newsimage {
  display: inline-flex;
  max-width: 200px;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.mail-submit {
  color: var(--Dark, #000);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 74px;
}

.form-container {
  display: flex;
  font-family: "Roboto", sans-serif;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.input-wrapper {
  position: relative;
  width: 643px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.input-wrapper input {
  border: none;
  background: none;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgba(30, 40, 50, 0.5);
  text-transform: capitalize;
  margin-left: 15px;
}

.input-wrapper input::placeholder {
  color: rgba(30, 40, 50, 0.5);
}

.input-underline {
  height: 2px;
  background-color: black;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.submit-button {
  background: none;
  border: none;
  color: #1e2832;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  cursor: pointer;
  padding: 0 16px;
  text-align: center;
}

.button-underline {
  height: 2px;
  background-color: #1e2832;
}


/*pelin/footer-section-start*/
.footer-container {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  max-width: 120em;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-container .footer-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-block-end: 30px;
}
.footer-container .footer-main .footer-brand {
  width: 24em;
  height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-container .footer-main .footer-brand .brand-title {
  display: flex;
  align-items: center;
  justify-items: flex-start;
  gap: 10px;
}
.footer-container .footer-main .footer-brand .footer-content {
  width: fit-content;
  text-transform: capitalize;
  text-align: left;
  color: #1e2832bf;
}
.footer-container .footer-main .footer-brand .footer-contact {
  display: flex;
  align-items: center;
  gap: 2em;
}
.footer-container .footer-main .footer-info {
  width: fit-content;
  height: 212px;
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  gap: 1.5em;
}

.footer-container .footer-main .footer-info .footer-title {
  font-size: 1em;
  font-weight: 600;
  text-align: left;
  color: #000000;
}
.footer-container .footer-main .footer-info .footer-links {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  gap: 10px;
}
.footer-container .footer-main .footer-info .footer-links li a {
  font-size: 0.875em;
  font-weight: 400;
  color: #1e2832;
}

.footer-container .footer-bottom {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #1e2832;
  color: #ffffff;
  padding-block: 12px;
}
.footer-container .footer-bottom .footer-scroll-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
@media only screen and (max-width: 900px) {
  .footer-container .footer-main {
    display: grid;
    grid-template-areas:
      "B C"
      "A S";
    gap: 10px;
  }
  .footer-container .footer-main .footer-brand {
    grid-area: "B";
  }
  .footer-container .footer-main .footer-info .catalog {
    grid-area: "C";
  }
  .footer-container .footer-main .footer-info .about {
    grid-area: "A";
  }
  .footer-container .footer-main .footer-info .services {
    grid-area: "S";
  }
  .footer-container .footer-main .footer-brand .footer-contact {
    padding-block-end: 20px;
  }
}

@media only screen and (max-width: 650px) {
  .footer-container {
    font-size: 12px;
  }

  .footer-container .footer-main .footer-info .footer-title {
    font-size: 1.25em;
  }
  .footer-container .footer-main .footer-brand .footer-content,
  .footer-container .footer-main .footer-info .footer-links li a {
    font-size: 1.2em;
  }
  .footer-container .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .footer-container {
    font-size: 12px;
  }
  .footer-container .footer-main {
    padding-inline: 20px;
    display: grid;
    grid-template-areas:
      "B"
      "C"
      "A"
      "S";
  }
}
/*pelin/footer-section-end*/

/* hekimcan/product-details-start */
.product-details-container {
  font-family: "Open Sans", sans-serif;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.product-details-container .detail-image-wrapper {
  display: flex;
  max-height: 610px;
  gap: 10px;
  margin:  20px;
}

.product-details-container .detail-image-wrapper .large-image img {
  max-height: 610px;
  object-fit: cover;
  border-radius: 4px;
}
.product-details-container .detail-image-wrapper .small-images {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: scroll;
  border-radius: 4px;

  max-height: 610px;
  gap: 20px;
}

.product-details-container .detail-image-wrapper .small-images img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}
.product-details-container .detail-main {
  margin: 20px;
  display: flex;
  flex-direction: column;

  justify-content: space-between;
}
.product-details-container .detail-main .product-detail-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-details-container .detail-main .product-detail-bottom .price-and-cart-button-contaier {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-details-container .detail-main .product-detail-bottom .price-and-cart-button-contaier .price {
  font-size: 40px;
  font-weight: 600;
}
.product-details-container .detail-main .product-detail-bottom .price-and-cart-button-contaier .add-to-cart {
  border-radius: 5px;
  padding: 10px 40px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.product-details-container .detail-main .detail-title {
  font-size: 40px;
}
.product-details-container .detail-main .product-feature {
  color: #00000080;
  font-weight: 400;
  font-size: 20px;
}

.product-details-container .detail-main .choose-size .choose-size-select {
  width: 100%;
  height: 60px;
  font-size: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/product-details/arrow-icon.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 29px 16px;
  padding: 10px;
  border-radius: 5px;
}

.product-details-container .detail-main .product-text .product-text-title {
  font-weight: 400;
  font-size: 16px;
}
.product-details-container .detail-main .product-text .product-paragraph {
  color: #00000080;
  text-align: justify;
}
.product-details-container .detail-main .color-options {
  display: flex;
  gap: 10px;
}
.product-details-container .detail-main .color-options .color-option {
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 50%;
}
.product-details-container .detail-main .color-options .first-color-option {
  background-color: #ac8387;
}
.product-details-container .detail-main .color-options .second-color-option {
  background-color: #83a0ac;
}
.product-details-container .detail-main .color-options .third-color-option {
  background-color: #90ac83;
}
.product-details-container .detail-main .color-options .fourth-color-option {
  background-color: #9083ac;
}


@media only screen and (max-width: 1024px){
  .product-details-container .detail-image-wrapper .large-image img {
max-height: 400px ;

}
.product-details-container .detail-image-wrapper .small-images {
  max-height: 400px;
}
.product-details-container .detail-main .detail-title {
  font-size: 35px;
}
.product-details-container .detail-main .product-text .product-paragraph {
  font-size: 18px;
}

}

@media only screen and (max-width: 900px) {
  .product-details-container {
    display: block;
  }
  .product-details-container .detail-image-wrapper {
    justify-content: center;
    align-items: center;
  }
  .product-details-container .detail-main .detail-title {
    font-size: 30px;
  }
  .product-details-container .detail-main .product-text .product-paragraph {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-container .detail-image-wrapper {
    flex-direction: column;
    height: auto; 
    justify-content: center;
    align-items: center;
  }
  .product-details-container .detail-image-wrapper .small-images {
    flex-direction: row;
    max-width: 90%;
    overflow-x: scroll;
    min-height: 100px; 
  }
  .product-details-container {
    display: block;
  }
  .product-details-container .detail-main .detail-title,
  .product-details-container .detail-main .product-feature {
    text-align: center;
  }
  .product-details-container .detail-main .detail-title {
    font-size: 25px;
  }
  .product-details-container .detail-main .product-text .product-paragraph {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .product-details-container .detail-image-wrapper {
    flex-direction: column;
    height: auto; 
  }
  .product-details-container .detail-main .color-options {
    justify-content: center;
    align-items: center;
  }

  .product-details-container .detail-image-wrapper .small-images {
    flex-direction: row;
    max-width: 90%;
    overflow-x: scroll;
    min-height: 100px; 
  }
  .product-details-container {
    flex-direction: column;
  }

  .product-details-container .detail-image-wrapper .large-image img {
    max-height: 400px;
  }
  .product-details-container .detail-main .detail-title,
  .product-details-container .detail-main .product-feature {
    text-align: center;
  }

  .product-details-container .detail-main .product-detail-bottom .price-and-cart-button-contaier {
    flex-direction: column;
    gap: 20px;
  }
  .product-details-container .detail-main .detail-title {
    font-size: 20px;
  }
  .product-details-container .detail-main .product-text .product-paragraph {
    font-size: 14px;
  }
}

@media only screen and (max-width: 320px) {
  .product-details-container .detail-image-wrapper .large-image img {
    max-height: 300px;
  }
  .product-details-container .detail-main .detail-title,
  .product-details-container .detail-main .product-feature {
    text-align: center;
  }

  .product-details-container .detail-main .color-options {
    justify-content: center;
    align-items: center;
  }

  .product-details-container .detail-main .product-detail-bottom .price-and-cart-button-contaier {
    flex-direction: column;
    gap: 20px;
  }
  .product-details-container {
flex-direction: column;  
}
.product-details-container .detail-main .detail-title {
  font-size: 15px;
}
}

/* hekimcan/product-details-end */

