* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  background-color: #f5f0e8;
  color: #3d2b1f;
  font-family: "Inter", sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #f5f0e8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: none;
  border-radius: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.navbar__logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c1810;
}
.navbar__links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f5f0e8;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.navbar__links.open {
  display: flex;
}
.navbar__links a {
  text-decoration: none;
  color: #3d2b1f;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 50px;
  border: 2px solid transparent;
}
.navbar__links a:hover {
  color: #d1924a;
}
.navbar__links a.active {
  color: #2c1810;
  border: 2px solid #2c1810;
}
.navbar__humburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.navbar__humburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2c1810;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar__humburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar__humburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__humburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (min-width: 768px) {
  .navbar {
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90vw;
    border-radius: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  }
  .navbar__logo {
    display: none;
  }
  .navbar__links {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    padding: 0;
    box-shadow: none;
    background: none;
    gap: 0.5rem;
    align-items: center;
  }
  .navbar__links a {
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
  }
  .navbar__links a.active {
    background-color: transparent;
    padding: 0.5rem 1.2rem;
  }
  .navbar__humburger {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  background-image: url("../images/heroimg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 6rem 1.5rem 3rem;
}
.hero__content {
  max-width: 100%;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #fdfdf7;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero__subtitle {
  color: #fdfdf7;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 100%;
}
.hero__btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 2px solid #fdfdf7;
  border-radius: 50px;
  color: #fdfdf7;
  text-decoration: none;
  font-size: 0.95rem;
  background-color: transparent;
}
.hero__btn:hover {
  background-color: #fdfdf7;
  color: #2c1810;
}
@media (min-width: 768px) {
  .hero {
    align-items: center;
    padding: 5rem 3rem;
  }
  .hero__content {
    max-width: 600px;
  }
  .hero__title {
    font-size: 5rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
    max-width: 400px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 6rem;
  }
}

.products {
  padding: 4rem 1.5rem;
  text-align: center;
  background-color: #fdfdf7;
}
.products__title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #2c1810;
  margin-bottom: 2rem;
}
.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.products__card {
  text-align: left;
  cursor: default;
}
.products__card img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.products__card:hover img {
  transform: scale(1.03);
}
.products__card--extra {
  display: none;
}
.products__card-body {
  padding: 0.9rem 0.2rem;
}
.products__card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.products__card-top h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #2c1810;
}
.products__price {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: #d1924a;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 0.8rem;
}
.products__desc {
  color: #3d2b1f;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.products__ing-btn {
  background: none;
  border: none;
  color: #3d2b1f;
  font-size: 0.8rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.products__ing-btn span {
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}
.products__ing-btn.open span {
  transform: rotate(45deg);
}
.products__ing {
  display: none;
  font-size: 0.8rem;
  color: #3d2b1f;
  opacity: 0.65;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.products__ing.open {
  display: block;
}
.products__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #f5f0e8;
  border-radius: 50px;
  border: 2px solid #2c1810;
  color: #3d2b1f;
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}
.products__btn:hover {
  color: #fdfdf7;
  background-color: #2c1810;
}
@media (min-width: 640px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products {
    padding: 6rem 3rem;
  }
  .products__content {
    max-width: 1300px;
    margin: 0 auto;
  }
  .products__title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .products__card img {
    height: 280px;
  }
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
  background-color: #f5f0e8;
  text-align: center;
}
.features__item {
  max-width: 300px;
}
.features__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.features__title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #2c1810;
  margin-bottom: 0.8rem;
}
.features__text {
  color: #3d2b1f;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .features {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    padding: 6rem 3rem;
  }
}

.about {
  padding: 4rem 1.5rem;
  background-color: #fdfdf7;
}
.about__header {
  text-align: center;
  margin-bottom: 3rem;
}
.about__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #2c1810;
}
.about__story {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.about__story .about__image {
  order: -1;
}
.about__image {
  flex: 1;
}
.about__image img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.about__text {
  flex: 1;
}
.about__text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #2c1810;
  margin-bottom: 1.2rem;
}
.about__text p {
  color: #3d2b1f;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about {
    padding: 6rem 3rem;
  }
  .about__title {
    font-size: 2.5rem;
  }
  .about__header {
    margin-bottom: 4rem;
  }
  .about__story {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding-top: 3rem;
  }
  .about__story .about__image {
    order: 0;
  }
  .about__image img {
    height: 450px;
  }
  .about__text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

.contact {
  background-color: #f5f0e8;
  padding: 2rem 1.5rem 4rem;
}
.contact__inner {
  background-color: #fdfdf7;
  border-radius: 24px;
  overflow: hidden;
}
.contact__map {
  width: 100%;
  height: 260px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3rem 1.5rem;
}
.contact__block h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #2c1810;
  margin-bottom: 1rem;
}
.contact__block p,
.contact__block a {
  display: block;
  color: #3d2b1f;
  font-size: 0.95rem;
  line-height: 1.8;
  text-decoration: none;
}
.contact__block p:hover,
.contact__block a:hover {
  color: #d1924a;
}
.contact__hours {
  list-style: none;
  max-width: 200px;
}
.contact__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #3d2b1f;
  line-height: 2;
}
.contact__hours li span {
  white-space: nowrap;
}
.contact__hours li span:last-child {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .contact {
    padding: 2rem 2rem 4rem;
  }
  .contact__info {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2.5rem 2rem;
  }
  .contact__block {
    flex: 1;
    min-width: 160px;
  }
}
@media (min-width: 1024px) {
  .contact {
    padding: 3rem 3rem 5rem;
  }
  .contact__inner {
    display: flex;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
  }
  .contact__map {
    width: 50%;
    height: auto;
    min-height: 420px;
    flex-shrink: 0;
  }
  .contact__info {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    padding: 3.5rem 3rem;
    gap: 2rem;
    align-items: flex-start;
  }
  .contact__block {
    flex: 1 1 150px;
  }
  .contact__block:first-child {
    flex-basis: 100%;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 3rem 1.5rem;
  background-color: #2c1810;
  color: #fdfdf7;
}
.footer__logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 200px;
  line-height: 1.6;
}
.footer h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.footer p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 3rem;
    gap: 6rem;
  }
}