/* ================================
   ASAN Hobby – Product Page CSS Skeleton
   File: style.css
   ================================ */

/* ---------- Global Styles ---------- */
body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #111;
}

p {
  margin-bottom: 0.75rem;
}

/* ---------- Header ---------- */
header {
  background-color: #fff;
}

header nav a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #007bff;
}

/* ---------- Buttons ---------- */
.btn-dark {
  background-color: #000;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #333;
}

/* ---------- Product Section ---------- */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

section h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

section h4 {
  font-size: 1.5rem;
}

img {
  border-radius: 8px;
}

/* ---------- Product Hero ---------- */
section:first-of-type h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ---------- Kit Section ---------- */
#kit-section img {
  border: 1px solid #eee;
}

/* ---------- How to Use Section ---------- */
ol {
  padding-left: 1.25rem;
}

ol li {
  margin-bottom: 1rem;
}

ol li strong {
  display: block;
  font-weight: 600;
}

/* ---------- Flower Chart ---------- */
ul.list-unstyled li {
  padding: 0.35rem 0;
  border-bottom: 1px dotted #ddd;
}

/* ---------- Related Products ---------- */
#related-products img {
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

#related-products img:hover {
  transform: scale(1.05);
}

#related-products h6 {
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
footer {
  font-size: 0.9rem;
}

footer .col-md-3 {
  margin-bottom: 1rem;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  color: #000;
}

footer i {
  font-size: 1.2rem;
  color: #333;
}

footer i:hover {
  color: #007bff;
}

.butn-pink {
    border: 2px solid #4dbc00;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
    color: #fff;
    background: #418C06;
    padding: 12px 25px;
}



/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    gap: 1rem;
  }

  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  h2, h3 {
    font-size: 1.5rem;
  }
}
