/* Redesigned Modern Flower Section - Full Image Width */
.flower-section {
  padding: 5rem 6%;
  background-color: #101010;
  text-align: center;
}

.flower-section h3 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ffcc00;
}

.flower-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    padding: 1rem;
}

.category {
  margin-bottom: 4rem;
}

.category h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffcc00;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.product-card {
  background-color: #181818;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.product-card .card-logo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-card p {
  font-size: 0.95rem;
  color: #bbbbbb;
  margin: 0 1rem 1rem;
  line-height: 1.6;
}

.product-card .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  border: 1px solid #ffcc00;
  background-color: transparent;
  color: #ffcc00;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto 1rem;
}

.product-card .btn:hover {
  background-color: #ffcc00;
  color: #121212;
}

.see-all-btn {
     margin-top: 2rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border: 1px solid #ffcc00;
    border-radius: 30px;
    background: transparent;
    color: #ffcc00;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    display: block;
    max-width: 10rem;
    margin: auto;
    margin-top: 2rem;
}

.see-all-btn:hover {
  background: #ffcc00;
  color: #121212;
}
