/*
Theme Name: MyToolShed.co Child
Theme URI: https://mytoolshed.co
Description: Child theme starter for MyToolShed.co tool rental website in The Bahamas.
Author: OpenAI
Template: astra
Version: 1.0.0
Text Domain: mytoolshed-co-child
*/

:root {
  --mts-primary: #c65a11;
  --mts-primary-dark: #a6490c;
  --mts-secondary: #2f343a;
  --mts-secondary-soft: #4a5159;
  --mts-white: #ffffff;
  --mts-bg: #f8f8f7;
  --mts-border: rgba(47, 52, 58, 0.10);
  --mts-text: #1f2429;
  --mts-muted: #616973;
  --mts-shadow: 0 18px 50px rgba(47, 52, 58, 0.10);
  --mts-radius: 22px;
}

body {
  color: var(--mts-text);
  background: var(--mts-bg);
}

.mts-site-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.mts-btn,
.mts-btn:visited {
  display: inline-block;
  background: var(--mts-primary);
  color: var(--mts-white);
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.mts-btn:hover {
  transform: translateY(-1px);
  opacity: .96;
  background: var(--mts-primary-dark);
}

.mts-btn.alt {
  background: transparent;
  color: var(--mts-secondary);
  border: 1px solid rgba(47,52,58,.18);
}

.mts-page-hero,
.mts-hero {
  padding: 70px 0 35px;
}

.mts-hero-grid,
.mts-two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}

.mts-kicker {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--mts-primary);
  font-weight: 800;
}

.mts-hero h1,
.mts-page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  margin: 10px 0 18px;
  color: var(--mts-secondary);
}

.mts-page-hero p,
.mts-hero p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--mts-muted);
  max-width: 760px;
}

.mts-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.mts-card {
  background: var(--mts-white);
  border: 1px solid var(--mts-border);
  box-shadow: var(--mts-shadow);
  border-radius: var(--mts-radius);
}

.mts-booking-card,
.mts-feature,
.mts-rental,
.mts-note,
.mts-policy,
.mts-contact-box,
.mts-about-box,
.mts-cta,
.mts-process {
  padding: 24px;
}

.mts-booking-card h3,
.mts-section h2,
.mts-rental h3,
.mts-feature h3,
.mts-policy h3,
.mts-contact-box h3,
.mts-about-box h3,
.mts-process h3 {
  color: var(--mts-secondary);
}

.mts-mini-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.mts-mini-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--mts-border);
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.mts-mini-list li:last-child { border-bottom: 0; }

.mts-section { padding: 34px 0 10px; }

.mts-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.mts-section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0;
}

.mts-section p.lead,
.mts-lead {
  margin: 0;
  color: var(--mts-muted);
  max-width: 760px;
}

.mts-grid-2,
.mts-grid-3,
.mts-grid-4 {
  display: grid;
  gap: 22px;
}

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

.mts-rental img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.mts-rental .mts-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--mts-muted);
  margin: 8px 0 14px;
}

.mts-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--mts-secondary);
}

.mts-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--mts-muted);
}

.mts-strip {
  background: linear-gradient(135deg, var(--mts-secondary), var(--mts-secondary-soft));
  color: var(--mts-white);
  padding: 38px 0;
  margin: 42px 0 16px;
}

.mts-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mts-strip .stat strong {
  display: block;
  font-size: 30px;
  color: #ffd8bf;
}

.mts-shortcode-box {
  background: #fff6ef;
  border: 1px dashed rgba(198,90,17,.35);
  color: var(--mts-secondary);
  padding: 18px;
  border-radius: 16px;
}

.mts-faq details {
  border-bottom: 1px solid var(--mts-border);
  padding: 16px 0;
}

.mts-faq details:last-child { border-bottom: 0; }
.mts-faq summary { cursor: pointer; font-weight: 700; color: var(--mts-secondary); }
.mts-faq p { margin: 12px 0 0; color: var(--mts-muted); }

.mts-list {
  padding-left: 20px;
  color: var(--mts-muted);
  line-height: 1.8;
}

.mts-page-main { padding-bottom: 60px; }

@media (max-width: 980px) {
  .mts-hero-grid,
  .mts-two-col,
  .mts-grid-4,
  .mts-grid-3,
  .mts-grid-2,
  .mts-strip-grid,
  .mts-section-head {
    grid-template-columns: 1fr;
    display: grid;
  }
  .mts-section-head { align-items: start; }
}
