body {
  margin: 0;
}

.body-container {
  max-width: 70%;
  margin: auto;
}

.header-flex {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.menu nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  column-gap: 20px;
  font-size: 40px;
  text-align: center;
  padding: 0;
}

.menu li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 40px;
}

.logo p {
  font-family: "Sofia", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  margin: 0;
  text-align: center;
}

aside {
  position: absolute;
  left: 0;
  top: 0;
  background-color:  #f8f5ef;
  z-index: 9;
  width: 30vw;
  height: 100vh;
  transform: translateX(-30vw);
}

.hamburger {
  font-size: 20px;
  padding-left: 35px;
}

.closing {
  cursor: pointer;
  text-align: center;
}

.icons {
  display: flex;
  justify-content: end;
  column-gap: 20px;
  font-size: 20px;
  padding-right: 35px;
}

.cart {
  text-align: center;
}

.banner-section {
  background-image: url(banner-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  margin-bottom: 30px;
}

.banner {
  text-align: end;
  height: 900px;
}

.banner img {
  width: 35%;
  padding-top: 102px;
  padding-right: 20px;
}

.collection-text {
  text-align: center;
  font-size: 30px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.description {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  column-gap: 50px;
  background-color: #f8f5ef;
  margin-top: 25px;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 30px;
}

.description-img {
  width: 40%;
}

.description-img img {
  border-radius: 30px;
  transition: transform 0.3s ease-out; /* Smooth scaling */
}

.description-img img:hover {
  transform: scale(1.1); /* Scale the image on hover */
}

.description-text p {
  text-align: center;
  margin: 0%;
  font-size: 20px;
}

.description-text {
  background-color: rgb(234, 232, 232);
  padding: 35px;
  border-radius: 30px;
}

.explore-button {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

button {
  --primary-color: #9d8161;
  --secondary-color: #fff;
  --hover-color: #908471;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 7px;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
}

button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

button:hover {
  background-color: var(--hover-color);
}

button:hover .arrow {
  background: var(--secondary-color);
}

button:hover .arrow:before {
  right: 0;
}

.owl-carousel .owl-nav.disabled {
  width: 100%;
  display: flex;
  position: absolute;
  align-items: center;
  top: 30px;
  justify-content: space-between;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  display: none;
}

.container-crousel {
  width: 95%;
  margin: auto;
  padding: 30px;
}

#slider1 .owl-item img {
  display: block;
  width: 90%;
  border-radius: 50%;
  margin: auto;
  transition: transform 0.3s ease-out; /* Smooth scaling */
}

#slider1 .owl-item img:hover {
  transform: scale(1.1); /* Scale the image on hover */
}

#slider2 .owl-item img {
  display: block;
  width: 90%;
  margin: auto;
  transition: transform 0.3s ease-out; /* Smooth scaling */
}

#slider2 .owl-item img:hover {
  transform: scale(1.1); /* Scale the image on hover */
}

.crousel-1 {
  text-align: center;
}

.owl-carousel .owl-nav button.owl-prev {
  font-size: 40px;
  margin-left: -30px;
}

.owl-carousel .owl-nav button.owl-next {
  font-size: 40px;

  margin-right: -30px;
}

.owl-carousel .owl-nav.disabled {
  width: 100%;
  display: flex;
  position: absolute;
  align-items: center;
  top: 30px;
  justify-content: space-between;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  display: none;
}

.container-arrival {
  width: 95%;
  margin: auto;
}

.crousel-1 {
  text-align: center;
}

.owl-carousel .owl-nav button.owl-prev {
  font-size: 40px;
  margin-left: -30px;
}

.owl-carousel .owl-nav button.owl-next {
  font-size: 40px;

  margin-right: -30px;
}

.quality img {
  width: 100%;
  border-radius: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  transition: transform 0.3s ease-out; /* Smooth scaling */
}

.quality img:hover {
  transform: scale(1.05); /* Scale the image on hover */
}

.arrival-text {
  text-align: center;
  font-size: 30px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

footer {
  background-color: #f8f8f8;
  border-radius: 30px;
  color: #333;
}

.footer-container {
  display: flex;

  justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-social,
.footer-newsletter {
  width: 22%;
  padding: 10px;
}

.footer-about h2 {
  color: #4caf50;
  font-family: "Sofia", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  margin-bottom: 10px;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin: 5px 0;
}

.footer-links a,
.footer-social a {
  text-decoration: none;
  color: #333;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #4caf50;
}

.footer-newsletter {
  text-align: center;
  margin-top: 20px;
}

.footer-newsletter p {
  color: #555;
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-newsletter input {
  padding: 8px 12px;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 200px;
  font-size: 0.9em;
  color: #333;
  background-color: #f0f8f0;
}

.footer-newsletter button {
  padding: 8px 15px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.9em;
  cursor: pointer;
}

.footer-newsletter input:focus,
.footer-newsletter button:hover {
  background-color: #45a049;
}

.footer-newsletter input:focus {
  border-color: #4caf50;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

.footer-bottom a {
  color: #333;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #4caf50;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-about,
  .footer-links,
  .footer-social,
  .footer-newsletter {
    width: 100%;
    text-align: center;
  }
}
