/* ======================================================
   Orbitrex Peptides — COAs Page Styles
   ====================================================== */

/* ---- Testing Standards Section ---- */
.coa-standards {
  padding: 60px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.coa-standards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.coa-standards h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a3c28;
  margin-bottom: 20px;
}

.coa-standards h2 .accent { color: #209d50; }

.coa-standards p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.coa-standards-image {
  border-radius: 12px;
  overflow: hidden;
}

.coa-standards-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* ---- COA Grid Section ---- */
.coa-products {
  padding: 0 24px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.coa-products > h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: 700;
  color: #1a3c28;
}

.coa-products > h2 .accent { color: #209d50; }

/* Search/filter */
.coa-search-wrapper {
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

.coa-search-wrapper input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 200px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.coa-search-wrapper input:focus {
  border-color: #209d50;
}

/* Grid */
.coa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.coa-card {
  background: #f0faf4;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.coa-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.coa-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a3c28;
  margin-bottom: 16px;
}

.coa-table {
  width: 100%;
  border-collapse: collapse;
}

.coa-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.coa-table td {
  padding: 8px 0;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.coa-table tr:last-child td {
  border-bottom: none;
}

.coa-table a {
  color: #209d50;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.coa-table a:hover {
  color: #1a8443;
  text-decoration: underline;
}

/* No results */
.coa-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}

/* ---- Independent Testing Section ---- */
.coa-independent {
  padding: 60px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.coa-independent h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a3c28;
  margin-bottom: 32px;
  text-align: center;
}

.coa-independent h2 .accent { color: #209d50; }

.coa-submission-card {
  background: #f7fbf9;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  border-left: 4px solid #209d50;
}

.coa-submission-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #209d50;
  margin-bottom: 12px;
}

.coa-submission-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 4px;
}

.coa-submission-card .label {
  font-weight: 600;
  color: #1a3c28;
}

.coa-submission-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.coa-submission-table th {
  text-align: left;
  font-weight: 600;
  color: #1a3c28;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.coa-submission-table td {
  padding: 8px 0;
  color: #444;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.coa-submission-table a {
  color: #209d50;
  text-decoration: none;
}

.coa-submission-table a:hover {
  color: #1a8443;
  text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .coa-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .coa-standards-inner {
    grid-template-columns: 1fr;
  }

  .coa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .coa-products > h2,
  .coa-standards h2,
  .coa-independent h2 {
    font-size: 26px;
  }

  .coa-card { padding: 20px; }
}
