/**
 * Cost Section Block Styles
 * Pricing comparison table
 */

.cost-section {
  background: var(--white);
  padding: 60px 40px;
}

.cost-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(74,38,0,.1);
  border: 1px solid rgba(74,38,0,.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.comparison-table thead th {
  background: var(--orange);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  min-width: 180px;
}

.comparison-table tbody tr:nth-child(odd) {
  background: var(--white);
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--light-bg);
}

.comparison-table tbody td {
  padding: 14px 18px;
  color: #444;
  border-bottom: 1px solid rgba(74,38,0,.06);
  line-height: 1.5;
  vertical-align: top;
}

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

.comparison-table tbody td:first-child {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
}

.warranty-badge {
  display: inline-block;
  background: rgba(224,120,32,.12);
  color: var(--orange-dark);
  border: 1px solid rgba(224,120,32,.3);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.comparison-note {
  font-size: 13px;
  color: #777;
  margin-top: 14px;
  text-align: center;
  font-style: italic;
}

.cost-closing {
  margin-top: 16px;
  text-align: center;
  font-size: 15px;
  color: #444;
}

.cost-closing a {
  color: var(--orange);
  font-weight: 700;
}

.cost-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cost-closing a:hover {
  text-decoration: underline;
}

.cost-inner .cost-intro a{
	color: var(--orange)!important;
	font-weight: 700;
}

.cost-inner .cost-intro {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
	text-align: left;
}

/* Responsive */
@media (max-width: 600px) {
  .cost-section {
    padding: 40px 20px;
  }
}
