html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  background-color: #fafafa;
  color: #000;
  line-height: 1.6;
  font-size: 18px; /* increased from default */
}

/* ===== Header ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eb7800;
  height: 80px;
  padding: 0 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  
  /* Add this line for a crisp border */
  border-bottom: 3px solid #d86b00; 
}


.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo img {
  width: 45px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.1em; /* slightly larger */
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  color: #d86b00;
  transform: scale(1.1);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px 80px;
  background: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)),
              url("hero-bg.jpg") center/120% no-repeat;
  background-size: cover;
  border-bottom: 3px solid #eb7800;
  color: #000;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h2 {
  font-size: 3.2em; /* increased from 2.8em */
  color: #222;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 20px;
  text-align: center;
  color: #000;
  font-size: 1.1em; /* increased */
}

/* Buttons */
.btn, .shop-now-btn {
  display: inline-block;
  padding: 14px 28px; /* bigger */
  background-color: #eb7800;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px; /* increased */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover, .shop-now-btn:hover {
  background-color: #d86b00;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(235, 120, 0, 0.4);
}

/* Slide-in bounce */
.slide-in-bounce {
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  padding: 10px;
  display: inline-block;
  max-width: 700px;
  margin: 20px auto;
  font-style: italic;
  color: #444;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 1s ease-out forwards;
  animation-delay: 0.5s;
  font-size: 1.1em; /* bigger text */
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-100%); }
  60% { opacity: 1; transform: translateX(10%); }
  80% { transform: translateX(-5%); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ===== Orientation / Intro Paragraph ===== */
.orientation-point {
  text-align: center;
  padding: 40px 20px;
}

.orientation-point p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15em; /* increased */
  color: #000;
}

/* ===== How It Works Section ===== */
.how-it-works {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #fff7ee);
  padding: 20px 20px;
}

.how-it-works h3 {
  font-size: 2em; /* increased from 1.8em */
  color: #222;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.step {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 300px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.step img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.step h4 {
  margin-bottom: 10px;
  color: #eb7800;
  font-size: 1.3em; /* slightly larger */
}

.step p {
  color: #555;
  font-size: 1.05em; /* increased from 0.95em */
}

/* ===== Featured Products ===== */
.featured-products {
  background: linear-gradient(180deg, #fff, #fff1e0);
  padding: 80px 20px;
  text-align: center;
}
.featured-products h3 {
  color: #222;
  margin-bottom: 20px;
  font-size: 2em; /* bigger */
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 280px;
  min-height: 460px;
  justify-content: space-between;
}

.product img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product h5 {
  margin: 10px 0 8px;
  font-size: 1.5em; /* bigger */
  font-weight: 600;
  color: #222;
}

.product p {
  color: #555;
  font-size: 1.05em; /* increased */
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* ===== Product Buttons Vertical Stack ===== */
/* ===== Product Buttons Vertical Stack ===== */
/* ===== Product Buttons Vertical Stack ===== */
.product-buttons {
  display: flex;
  flex-direction: column; /* stack buttons vertically */
  gap: 12px; /* space between Details and Buy Now */
  margin-top: 20px;
  align-items: center; /* center buttons horizontally */
  width: 100%; /* let buttons take full width if desired */
}

.product-buttons .btn,
.product-buttons .shop-now-btn {
  width: 100%; /* make both buttons same width */
  max-width: 180px; /* optional: limit width on large screens */
  text-align: center;
  font-size: 18px; /* uniform font */
  padding: 12px 0; /* uniform height */
  box-sizing: border-box; /* ensure padding doesn't break width */
}


/* ===== About Section ===== */
.about {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.about h3 {
  color: #222;
  margin-bottom: 20px;
  font-size: 2em; /* bigger */
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1em;
}

/* ===== Contact Section ===== */
.contact {
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.contact h3 {
  margin-bottom: 15px;
  color: #222;
  font-size: 2em; /* bigger */
}

.contact p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1em;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 25px 15px;
  background: linear-gradient(90deg, #eb7800, #d86b00);
  color: white;
  font-size: 1em; /* slightly bigger */
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== Fade-in Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
  header { padding: 0 25px; height: 70px; }
  .logo { width: 60px; height: 60px; }
  .logo img { width: 40px; }
  nav a { margin: 0 12px; font-size: 1em; }
  .hero { padding: 80px 15px; }
  .hero h2 { font-size: 2.6em; }
}

@media (max-width: 768px) {
  header { flex-direction: column; height: auto; padding: 15px 20px; }
  nav { width: 100%; justify-content: center; margin-top: 10px; }
  .logo { width: 55px; height: 55px; }
  .logo img { width: 35px; }
  .hero h2 { font-size: 2.3em; }
  .hero p { font-size: 1em; }
  .btn, .shop-now-btn { padding: 12px 22px; font-size: 17px; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 90%; font-size: 1.05em; }
}

@media (max-width: 480px) {
  header { padding: 10px 15px; }
  .logo { width: 50px; height: 50px; }
  .logo img { width: 30px; }
  nav a { margin: 0 8px; font-size: 0.95em; }
  .hero h2 { font-size: 1.9em; }
  .hero p { font-size: 0.95em; }
  .btn, .shop-now-btn { padding: 10px 18px; font-size: 16px; }
  .orientation-point p, .about p, .contact p { font-size: 1em; }
}
.products h3 {
  text-align: center;
  font-size: 2.5em; /* bigger */
  margin-bottom: 40px; /* space below */
  color: #222; /* optional, darker for contrast */
}
.product .price {
  font-size: 1.4em;       /* slightly larger than normal text */
  font-weight: 700;       /* bold */
  color: #eb7800;         /* matches your brand color */
  margin: 10px 0;         /* space above and below */
  text-align: center;     /* centers the price under the title */
}
