/* Contacts Page Enhanced Styles */

.contacts-intro {
  color: var(--text-medium);
  margin-bottom: 32px;
}

/* Contact Cards Grid */
.contacts-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-card {
  background: rgba(155, 136, 96, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid var(--accent-gold);
}

.contact-card h3 {
  margin-bottom: 12px;
  color: var(--accent-wine);
}

.contact-card p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-wine);
  margin: 0;
}

.contact-card a {
  color: var(--accent-wine);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-card a:hover {
  opacity: 0.8;
}

/* Working Hours Section */
.working-hours-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.working-hours-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(155, 136, 96, 0.05);
  padding: 24px;
  border-radius: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(114, 47, 55, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-time {
  color: var(--accent-wine);
  font-weight: 500;
}

/* Production Info Box */
.production-info-box {
  background: rgba(114, 47, 55, 0.08);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid var(--accent-gold);
  margin-top: 24px;
}

.production-info-box h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--accent-wine);
}

.production-info-box p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Contact Form Enhancement */
.contact-form-intro {
  color: var(--text-medium);
  margin-bottom: 24px;
}
