/* General & Reusable Styles */
body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  margin: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Header (Consistent with other pages) */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-icon {
  height: 2rem;
  width: 2rem;
  color: #2563eb;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}
.main-nav {
  /* display: none; */
  gap: 2rem;
}
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}
.main-nav a {
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms;
}
.main-nav a:hover {
  color: #2563eb;
}
.main-nav a.active {
  color: #2563eb;
  font-weight: 600;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon-link {
  position: relative;
  color: #64748b;
  transition: color 150ms;
}
.icon-link:hover {
  color: #2563eb;
}
.icon {
  height: 1.5rem;
  width: 1.5rem;
}
.cart-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 0.75rem;
  border-radius: 9999px;
  height: 1.25rem;
  width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Content */

.breadcrumbs {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumbs li {
  display: flex;
  align-items: center;

}
.breadcrumbs a {
  color: #64748b;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #2563eb;
}
.breadcrumbs span {
  color: #1e293b;
  font-weight: 500;
}

.separator-icon {
  height: 0.75rem;
  width: 0.75rem;
  fill: #94a3b8;
  margin: 0 0.5rem;
}

.page-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.page-header {
  margin-bottom: 2rem;
  text-align: center;
}
.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
}
.page-subtitle {
  margin-top: 0.5rem;
  color: #64748b;
}

/* Contact Card */
.contact-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  max-width: 56rem;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Info Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.info-label {
  font-weight: 600;
}
.info-text {
  color: #475569;
}

/* Contact Form Section */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}
.form-input,
.form-textarea {
  margin-top: 0.25rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.form-actions {
  text-align: right;
}
.submit-button {
  background-color: #2563eb;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 300ms;
}
.submit-button:hover {
  background-color: #1d4ed8;
}

/* Footer */
.site-footer {
  background-color: #1e293b;
  color: #ffffff;
  margin-top: 4rem;
}
.footer-bottom {
  border-top: 1px solid #334155;
  padding: 1.5rem 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}
