.product-detail-section {
  background-color: var(--beige);
  padding: 3rem 2rem;
}

.product-detail-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.product-detail-text {
  flex: 1;
  min-width: 300px;
}

.product-detail-text h2 {
  font-size: 2.2rem;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.product-detail-text h3 {
  color: var(--accent-yellow);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.product-detail-text p {
  font-size: 1.1rem;
  color: #2e2e2e;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-detail-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-detail-text h2 {
    font-size: 2rem;
  }

  .product-detail-text p,
  .product-detail-text h3 {
    text-align: left;
    color: var(--accent-yellow);
  }
}
/* Info Section */
.info-wrapper {
  width: 100%;
}

/* Documentation title + toggle icon */
.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.dropdown-toggle {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  margin: 0;
}

.toggle-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-yellow);
  transition: transform 0.25s ease;
}

.toggle-icon.open {
  transform: rotate(45deg); /* + to × */
}

/* Sliding dropdown */
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 1rem;
  padding-right: 1rem;
}

.dropdown-content.open {
  max-height: 1200px; /* Enough to show all content */
}

/* Content inside dropdown */
.dropdown-content h4 {
  margin-top: 1.5rem;
  color: var(--accent-yellow);
  font-size: 1.1rem;
}

.dropdown-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.dropdown-content li {
  margin-bottom: 0.6rem;
}

.dropdown-content a {
  color: #2e2e2e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dropdown-content a:hover {
  text-decoration: underline;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .dropdown-content ul {
    grid-template-columns: 1fr;
  }
}
