/* Custom Cabinet Website Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #374151;
}

.cabinet-hero-overlay {
  background: linear-gradient(135deg, rgba(95, 82, 66, 0.8), rgba(16, 185, 129, 0.6));
}

.cabinet-card {
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.cabinet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cabinet-btn-primary {
  background: linear-gradient(135deg, #8b6f5b, #73624e);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cabinet-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 111, 91, 0.3);
  text-decoration: none;
  color: white;
}

.cabinet-btn-secondary {
  background: transparent;
  color: #8b6f5b;
  padding: 14px 28px;
  border: 2px solid #8b6f5b;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.cabinet-btn-secondary:hover {
  background: #8b6f5b;
  color: white;
  text-decoration: none;
}

.cabinet-nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.cabinet-nav-link:hover {
  color: #8b6f5b;
  text-decoration: none;
}

.cabinet-nav-link.active {
  color: #8b6f5b;
  font-weight: 600;
}

.cabinet-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #8b6f5b;
}

.cabinet-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: white;
}

.cabinet-form-input:focus {
  outline: none;
  border-color: #8b6f5b;
  box-shadow: 0 0 0 3px rgba(139, 111, 91, 0.1);
}

.cabinet-section-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.cabinet-price-tag {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: block;
}

.cookie-consent-banner.hidden {
  display: none;
}

.cookie-btn-accept {
  background: #059669;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 8px;
}

.cookie-btn-decline {
  background: #dc2626;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cabinet-section-title {
    font-size: 2rem;
  }
  
  .cookie-consent-banner {
    right: 10px;
    left: 10px;
    max-width: none;
    bottom: 10px;
  }
  
  .cabinet-btn-primary,
  .cabinet-btn-secondary {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}
