body {
  margin: 0;
  padding: 40px 20px;
  font-family: 'Fredoka One', cursive;
  background: linear-gradient(135deg, #ffa94d, #ff6600);
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.offers-container {
  max-width: 800px;
  width: 100%;
  background: #fff3e6;
  border-radius: 25px;
  padding: 30px 40px;
  box-shadow: 0 15px 30px rgba(255, 102, 0, 0.4);
  color: #333;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 40px;
  text-align: center;
  color: #ff6600;
  text-shadow: 2px 2px 0 #fff;
}

.offer-block {
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 20px;
  background: #ffe6cc;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 102, 0, 0.3);
}

.offer-block h2 {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 15px;
}

.offer-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

strong {
  color: #cc5200;
}

@media (max-width: 600px) {
  .page-title {
    font-size: 2.3rem;
  }

  .offer-block h2 {
    font-size: 1.6rem;
  }
}
.back-button-container {
  text-align: center;
  margin-top: 20px;
}

.back-button {
  display: inline-block;
  background: #ff6600;
  color: white;
  font-size: 1.1rem;
  font-family: 'Fredoka One', cursive;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-button:hover {
  background: #cc5200;
  transform: translateY(-2px);
}

/* ---------------------------
   📱 MOBILE RESPONSIVE LAYOUT
---------------------------- */
@media only screen and (max-width: 768px) {

  body {
    padding: 10px;
    font-size: 16px;
  }

  header, .navbar, .hero, .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }

  .hero img,
  .container img,
  .product-card img,
  .gallery-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-card, .gallery-box {
    width: 100% !important;
    margin: 10px 0;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial {
    margin: 15px 0;
  }

  .footer-links, .footer {
    flex-direction: column;
    text-align: center;
  }

  form input,
  form textarea,
  form button {
    width: 100% !important;
    margin-bottom: 15px;
  }
}
