
    :root {
      --cream: #fbf4e6;
      --warm-white: #fffaf0;
      --forest: #314d36;
      --olive: #6f7f45;
      --gold: #c99a3e;
      --terracotta: #a95f3d;
      --text: #2d2a24;
      --muted: #6d665d;
      --card: rgba(255, 250, 240, 0.88);
      --shadow: 0 18px 45px rgba(49, 77, 54, 0.16);
    }

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

    body {
      font-family: Georgia, 'Times New Roman', serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(251, 244, 230, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(49, 77, 54, 0.12);
    }

    .nav {
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }

    .logo {
      font-size: 1.45rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--forest);
    }

    .nav-links {
      display: flex;
      gap: 22px;
      font-family: Arial, sans-serif;
      font-size: 0.95rem;
      color: var(--forest);
    }

    .nav-links a:hover {
      color: var(--terracotta);
    }

   .hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  padding: 72px 24px;
  background:
    linear-gradient(
      rgba(251, 244, 230, 0.78),
      rgba(251, 244, 230, 0.9)
    ),
    url("../images/hero-zlatograd.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

    .hero-inner {
      max-width: 1180px;
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 52px;
    }

    .eyebrow {
      font-family: Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.78rem;
      color: var(--terracotta);
      margin-bottom: 16px;
      font-weight: 700;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 7vw, 5.8rem);
      line-height: 0.95;
      color: var(--forest);
      margin-bottom: 24px;
    }

    .hero p {
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      max-width: 650px;
      color: var(--muted);
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 24px;
      border-radius: 999px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .btn-primary {
      background: var(--forest);
      color: var(--warm-white);
      box-shadow: var(--shadow);
    }

    .btn-secondary {
      border: 1px solid rgba(49, 77, 54, 0.35);
      color: var(--forest);
      background: rgba(255, 250, 240, 0.55);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .hero-card {
      background: var(--card);
      border: 1px solid rgba(49, 77, 54, 0.12);
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .product-preview {
      min-height: 360px;
      border-radius: 22px;
      background:
        linear-gradient(140deg, rgba(49, 77, 54, 0.18), rgba(201, 154, 62, 0.24)),
        var(--warm-white);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 32px;
    }

    .product-preview span {
      font-size: 4rem;
      display: block;
      margin-bottom: 10px;
    }

    .product-preview h2 {
      color: var(--forest);
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 80px 24px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--forest);
      margin-bottom: 16px;
      text-align: center;
    }

    .section-lead {
      max-width: 720px;
      margin: 0 auto 44px;
      text-align: center;
      color: var(--muted);
      font-size: 1.12rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      background: var(--warm-white);
      border: 1px solid rgba(49, 77, 54, 0.12);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(49, 77, 54, 0.09);
    }

    .card-icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
    }

    .card h3 {
      color: var(--forest);
      margin-bottom: 10px;
      font-size: 1.35rem;
    }

    .card p {
      color: var(--muted);
    }

    .story {
      background: var(--forest);
      color: var(--warm-white);
    }

    .story-inner {
      max-width: 960px;
      margin: 0 auto;
      padding: 82px 24px;
      text-align: center;
    }

    .story h2 {
      font-size: clamp(2rem, 4vw, 3.4rem);
      margin-bottom: 20px;
    }

    .story p {
      color: rgba(255, 250, 240, 0.84);
      font-size: 1.16rem;
      margin-bottom: 18px;
    }

    .newsletter {
      background: var(--warm-white);
      border-radius: 28px;
      padding: 42px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .newsletter h2 {
      color: var(--forest);
      font-size: 2rem;
      margin-bottom: 8px;
    }

    .newsletter p {
      color: var(--muted);
    }

    .site-footer {
      padding: 34px 24px;
      text-align: center;
      color: var(--muted);
      font-family: Arial, sans-serif;
      border-top: 1px solid rgba(49, 77, 54, 0.12);
    }

    @media (max-width: 850px) {
      .hero-inner,
      .newsletter {
        grid-template-columns: 1fr;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      .nav {
        align-items: flex-start;
        flex-direction: column;
      }

      .nav-links {
        flex-wrap: wrap;
      }

      .hero {
        padding-top: 48px;
      }
    }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background: var(--warm-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(49, 77, 54, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(49, 77, 54, 0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(49, 77, 54, 0.18);
}

.product-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background:
    linear-gradient(
      135deg,
      rgba(201, 154, 62, 0.2),
      rgba(49, 77, 54, 0.15)
    );
}

.product-content {
  padding: 24px;
}

.product-category {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.product-content h3 {
  color: var(--forest);
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.product-description {
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 72px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--forest);
}

.product-size {
  color: var(--muted);
  font-size: 0.95rem;
}

.add-to-cart {
  width: 100%;
}
.cart-box {
  margin-top: 40px;
  background: var(--warm-white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(49, 77, 54, 0.12);
  border: 1px solid rgba(49, 77, 54, 0.08);
}

.cart-box h3 {
  color: var(--forest);
  margin-bottom: 16px;
  font-size: 1.6rem;
}

#cart-items {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

#cart-items li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(49, 77, 54, 0.1);
  display: flex;
  justify-content: space-between;
}

.cart-total {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--forest);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image {
  height: 260px;
  overflow: hidden;
  background: #f4eee3;
}
.product-image img {
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.remove-item {
  border: none;
  background: var(--terracotta);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.remove-item:hover {
  background: var(--forest);
}
.menu-toggle {
  display: none;
  border: none;
  background: var(--forest);
  color: var(--warm-white);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

@media (max-width: 850px) {
  .nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
  }

  .nav-links.active {
    display: flex;
  }
}
html {
  scroll-behavior: smooth;
}
.hero-content {
  background: rgba(255, 250, 240, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.22);

  padding: 42px;
  border-radius: 28px;

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255,255,255,0.08);

  max-width: 720px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--warm-white);
  border-radius: 28px;
  padding: 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: var(--terracotta);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-content h2 {
  color: var(--forest);
  margin-bottom: 16px;
}

.modal-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.modal-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--forest) !important;
}
.checkout-box {
  margin-top: 32px;
  background: var(--warm-white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(49, 77, 54, 0.12);
  border: 1px solid rgba(49, 77, 54, 0.08);
}

.checkout-box h3 {
  color: var(--forest);
  margin-bottom: 20px;
  font-size: 1.6rem;
}

#checkout-form {
  display: grid;
  gap: 18px;
}

#checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-weight: bold;
}

#checkout-form input,
#checkout-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(49, 77, 54, 0.2);
  font: inherit;
  background: #fff;
}

#order-message {
  margin-top: 18px;
  color: var(--forest);
  font-weight: bold;
}
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.filter-btn {
  border: none;
  background: rgba(49, 77, 54, 0.08);
  color: var(--forest);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: var(--forest);
  color: white;
}

.filter-btn.active {
  background: var(--forest);
  color: white;
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--forest);
  color: var(--warm-white);
  padding: 16px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  font-weight: bold;
}

.toast.active {
  opacity: 1;
  transform: translateY(0);
}
.product-search {
  margin-bottom: 22px;
}

.product-search input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(49, 77, 54, 0.2);
  background: var(--warm-white);
  font: inherit;
  box-shadow: 0 8px 24px rgba(49, 77, 54, 0.08);
}

.product-search input:focus {
  outline: none;
  border-color: var(--forest);
}
.hidden {
  display: none;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
.social-float {
  position: fixed;
  right: 22px;
  bottom: 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-btn {
  background: var(--forest);
  color: var(--warm-white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.whatsapp {
  background: #2f6f3e;
}

@media (max-width: 600px) {
  .social-float {
    right: 14px;
    bottom: 72px;
  }

  .social-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
.featured-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.featured-card {
  position: relative;
  background: var(--warm-white);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(49, 77, 54, 0.14);
  border: 1px solid rgba(49, 77, 54, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(49, 77, 54, 0.2);
}

.featured-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 20px;
}

.featured-card h3 {
  color: var(--forest);
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.featured-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.featured-badge {
  position: absolute;
  top: 34px;
  left: 34px;
  background: var(--gold);
  color: var(--forest);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: bold;
  z-index: 2;
}

@media (max-width: 850px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-section {
  background:
    radial-gradient(circle at top left, rgba(201, 154, 62, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(49, 77, 54, 0.12), transparent 28%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--warm-white);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 36px rgba(49, 77, 54, 0.12);
  border: 1px solid rgba(49, 77, 54, 0.1);
}

.testimonial-card p {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.testimonial-card h3 {
  color: var(--forest);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--terracotta);
  font-weight: bold;
  font-size: 0.9rem;
}

@media (max-width: 850px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.floating-cart {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--warm-white);
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
  z-index: 999;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.floating-cart a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.floating-cart:hover {
  transform: translateX(-50%) translateY(-3px);
}

@media (max-width: 600px) {
  .floating-cart {
    width: calc(100% - 28px);
    text-align: center;
    padding: 14px;
    bottom: 16px;
  }
}