/* ─────────────────────────────────────────
   Page Banner (blue dot-pattern header)
───────────────────────────────────────── */
.page-banner {
  padding: 22px 0 26px;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
}

.breadcrumb a:hover { color: #fff; text-decoration: underline; }

.bc-sep { color: rgba(255,255,255,.5); }

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* ─────────────────────────────────────────
   Page Layout
───────────────────────────────────────── */
.page-body {
  padding: 36px 0 60px;
  background: #fff;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ─────────────────────────────────────────
   Main — Product sections
───────────────────────────────────────── */
.page-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.product-section {
  flex: 1 1 220px;
  min-width: 0;
}

.product-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.product-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* Placeholder imagery */
.mock-complete-machine {
  background: linear-gradient(145deg, #6a7a8a 0%, #9ab0c8 35%, #d0dce8 60%, #9ab0c8 80%, #6a7a8a 100%);
}

.mock-supply-sections {
  background: linear-gradient(145deg, #1a2840 0%, #243860 35%, #304878 60%, #243860 80%, #1a2840 100%);
}

/* ─────────────────────────────────────────
   Sidebar
───────────────────────────────────────── */
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-card {
  border: 1px solid #e4e8f0;
  padding: 22px 20px;
  background: #fff;
}

.sidebar-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 18px;
  padding-bottom: 0;
}

/* ─────────────────────────────────────────
   Contact form
───────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 12px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 12px;
  color: #555;
}

.form-group input,
.form-group textarea {
  border: 1px solid #b0d4f0;
  background: #e8f4fc;
  padding: 7px 9px;
  font-size: 13px;
  color: #333;
  font-family: inherit;
  outline: none;
  border-radius: 1px;
  transition: border-color .2s, background .2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-link);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #555;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue-link);
  cursor: pointer;
}

.form-check a {
  color: var(--blue-link);
}

.btn-send {
  background: var(--blue-link);
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  border-radius: 1px;
  transition: background .2s;
  font-family: inherit;
}

.btn-send:hover { background: #1a60b8; }

.form-msg {
  font-size: 12px;
  color: #2a8a2a;
  min-height: 16px;
  text-align: center;
}

/* ─────────────────────────────────────────
   LinkedIn sidebar block
───────────────────────────────────────── */
.sidebar-linkedin .sidebar-heading {
  margin-bottom: 12px;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0077b5;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s;
}

.linkedin-btn:hover { background: #005f94; text-decoration: none; }

/* Active nav link */
#main-nav .nav-list > li > a.active {
  color: var(--blue-primary);
  border-bottom: 2px solid var(--blue-primary);
}

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .page-sidebar { order: -1; }
}

@media (max-width: 600px) {
  .product-photo { height: 150px; }
}
