/* Legal Pages Styles */

/* Main Layout */
.legal-main {
  min-height: calc(100vh - 160px);
  padding: 60px 0;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}

.legal-updated {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 48px;
}

/* Legal Content */
.legal-content {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 40px;
}

.legal-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #222;
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.legal-section p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section li {
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-section a {
  color: #dc2626;
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Legal Footer */
.legal-footer {
  background: #000;
  border-top: 1px solid #222;
  padding: 32px 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
  color: #dc2626;
}

.copyright {
  font-size: 13px;
  color: #555;
}

/* Back to Store Link */
.back-to-store {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid #333;
  border-radius: 6px;
  transition: all 0.2s;
}

.back-to-store:hover {
  color: #fff;
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
}

/* =====================
   CONTACT PAGE STYLES
   ===================== */
.contact-page {
  max-width: 1100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

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

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: #dc2626;
}

.contact-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 4px;
}

.contact-hours {
  font-size: 13px;
  color: #666;
}

/* Contact Form */
.contact-form-section {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 32px;
}

.contact-form-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #fff;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #dc2626;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  transform: translateY(-2px);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 600px) {
  .legal-title {
    font-size: 32px;
  }

  .legal-content {
    padding: 24px;
  }

  .legal-section h2 {
    font-size: 18px;
  }

  .footer-links {
    gap: 16px;
  }
}
