/* Decor Profile - Availability, Portfolios, Event Packages, T&C */

.decor-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.decor-section-title {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-border);
}

/* Availability */
.availability-slots { margin-top: 0.5rem; }
.availability-month {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.availability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.slot-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 8px;
  background: rgba(26, 21, 18, 0.8);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.slot-btn:hover,
.slot-btn.selected {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

/* Portfolios */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

.portfolio-item {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Event packages */
.decor-event h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.decor-pkg-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .decor-pkg-grid { grid-template-columns: 1fr; }
}

.decor-event .mehndi-card .pkg-includes {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
  font-size: 0.85rem;
  color: var(--white-muted);
}

.decor-event .mehndi-card .pkg-includes li {
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.decor-event .mehndi-card .pkg-includes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.decor-premium {
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.3);
}

/* Add-ons per event */
.decor-addons {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.decor-addons h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Terms & Conditions */
.decor-tnc { border-bottom: none; }

.tnc-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tnc-list li {
  margin-bottom: 0.75rem;
}

.tnc-agreement {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.tnc-agreement input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
