﻿body {
  font-family: 'Inter Tight', sans-serif;
}

.logo-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

.logo {
  text-transform: uppercase;
}

.btn-shop:hover,
.footer-nav a:hover,
.social-links a:hover,
.cta-form button:hover {
  opacity: 0.6;
}
html {
  background-color: #e5e5e5;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #7a4419;
  color: #FBFBFB;
  gap: 40px;
  position: relative;
  z-index: 20;
}

nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
}

header nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #400406;
  z-index: 10;
}

header nav.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

header nav a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 10px 24px;
  display: block;
}

header nav a:hover {
  opacity: 0.6;
}

header nav .btn-shop {
  margin-top: 12px;
}

.btn-shop {
  background-color: #ffffff;
  color: #7a4419;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
}

.menu-toggle {
  display: block;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #FBFBFB;
}

.hero {
  background-color: #7a4419;
  color: #ffffff;
  padding: 40px 20px;
}

.hero-text h1 {
  font-weight: 600;
  font-size: 38px;
  line-height: 40px;
  letter-spacing: -0.57px;
  text-transform: uppercase;
  margin-bottom: 16px;
}


.hero-text p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
}

.order-steps {
  background-color: #7a4419;
  color: #ffffff;
  padding: 40px 20px;
}

.order-info h2 .highlight {
  color: rgba(215, 190, 130, 1);
}


.order-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
}

.order-info h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.order-info p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.order-info ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order-info li {
  counter-increment: step;
  position: relative;
  background-color: #ffffff;
  color: #333333;
  padding: 16px 16px 16px 28px;
  border-radius: 12px;
}

.order-info li::before {
  content: counter(step);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7be82 0%, #755c1b 100%);
  color: #755c1b;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}


.discount-banner {
  background-color: #ffffff;
  padding: 30px 20px;
}

.discount-banner p {
  font-weight: 600;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.72px;
  text-transform: uppercase;
}

.tag {
  background-color: #7a4419;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 6px;
}

.highlight {
  color: #7a4419;
}

.products {
  background-color: #400406;
  color: #ffffff;
  padding: 40px 20px;
}

.products h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.products > p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 24px;
}

.product-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card {
  background-color: #FBFBFB;
  color: #333333;
  border-radius: 12px;
  padding: 32px 16px 16px 16px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-card h3 {
  color: #755c1b;
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.reviews {
  background-color: #ffffff;
  color: #141414;
  padding: 40px 20px;
}

.reviews h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.reviews > p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 24px;
}

.review-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review-grid::-webkit-scrollbar {
  display: none;
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.review-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 85%;
  scroll-snap-align: center;
  border: 1px solid #d7be82;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.dot.active {
  background-color: #7a4419;
  width: 20px;
  border-radius: 4px;
}


.products .highlight {
  color: #d7be82;
}


.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d7be82;
}
.cta {
  background-color: #7a4419;
  color: #ffffff;
  padding: 40px 20px;
}

.cta-image {
  background-color: #400406;
  border-radius: 16px;
  padding: 16px;
}

.cta-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cta-image p {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.cta > h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta > h2 .highlight {
  color: #d7be82;
}

.cta > p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 24px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-form {
  position: relative;
  background-color: #ffffff;
  color: #333333;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 8px;
}
.cta-form .highlight-alt {
  color: #755c1b;
}


.cta-form input,
.cta-form textarea {
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
}

.cta-form textarea {
  min-height: 80px;
  resize: vertical;
}

.form-message {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border: 1px solid #755c1b;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: #755c1b;
  font-weight: 600;
  text-align: center;
  z-index: 5;
}

.form-message.visible {
  display: block;
}

.cta-form button {
  background-color: #755c1b;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cta-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.cta-image p {
  font-size: 14px;
  margin-bottom: 4px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.social-links a {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 5px 10px;
  white-space: nowrap;
}


footer {
  background-color: #400406;
  color: #ffffff;
  padding: 40px 20px;
}
.footer-nav {
  font-weight: 600;
  font-size: 32px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.footer-about .logo {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-about {
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-nav {
  margin-bottom: 0;
}

.footer-about p {
  font-size: 14px;
  color: #ffffff;

}

.footer-nav a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 15px;
  display: inline-block;
}

.footer-contact address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.footer-contact address a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  gap: 8px;
  font-size: 14px;
  color: rgba(251, 251, 251, 0.5);
}




@media (min-width: 768px) {

  header {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: none;
  }

  header nav {
    display: flex;
    align-items: center;
    gap: 20px;
    position: static;
    width: auto;
    background-color: transparent;
    box-shadow: none;
  }

  header .logo {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
  }

  header nav ul {
    flex-direction: row;
    gap: 12px;
  }

  header nav ul a {
    border: 1px solid #ffffff;
    border-radius: 50px;
    padding: 8px 18px;
    display: block;
  }

  header nav .btn-shop {
    margin-top: 0;
    background-color: #400406;
    color: #ffffff;
    padding: 14px 30px;
    font-size: 16px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }

  .dots {
    display: none;
  }

}

@media (min-width: 768px) and (max-width: 1023px) {

  .hero-text {
    max-width: 420px;
  }

  .hero-image {
    margin: 24px -20px 0 -20px;
  }

  .hero-image img {
    width: 100%;
    display: block;
    border-radius: 0;
  }

  .order-image,
  .order-info {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .dots {
    display: flex;
  }

  .cta-form,
  .cta-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-about,
  .footer-nav {
    margin-bottom: 0;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-nav ul {
    align-items: flex-start;
  }

  .footer-contact address {
    text-align: left;
  }

}



@media (min-width: 1024px) {

  body {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  }

  header {
    padding: 20px 60px;
  }

  .discount-banner,
  .products,
  .reviews,
  .cta,
  footer {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hero-text h1 {
    font-size: 64px;
    line-height: 64px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-bottom: 0;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
  }

  .order-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 0;
  }

  .order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
  }

  .hero-text,
  .order-info {
    padding: 60px;
  }

  .cta-content {
    flex-direction: row;
    align-items: stretch;
  }

  .cta-form,
  .cta-image {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .cta-image img {
    flex: 1;
    min-height: 0;
    object-fit: cover;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-about,
  .footer-nav {
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

}
