.flex {
  display: flex;
}

.content ul {
  list-style-type: square;
}
.content b {
  font-weight: 500;
}
.content li {
  margin-bottom: 0.75em;
}
.content hr {
  margin: 40px 60px 20px 60px;
  height: 2px;
  color: #689953;
  background: #689953;
  font-size: 0;
  border: 0;
}
.content i {
  font-style: italic;
}
.content hr.thin {
  margin: 20px 60px 20px 60px;
  height: 1px;
  color: #222222;
  background: #ccc;
  font-size: 0;
  border: 0;
}
.content .rounded {
  border-radius: 12px;
}
.content .ss-lead {
  color: #aaa;
  font-size: 1.2em;
}

:root {
  --ss-accent: #689953;
  --ss-accent-hover: #5b8749;
}

/* call to action */
.ss-cta {
  display: inline-block;
  padding: 12px 20px;
  background: var(--ss-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 400;
  letter-spacing: 0.75px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.ss-cta:hover {
  background-color: var(--ss-accent-hover);
}
a.ss-cta {
  color: #fff;
}
a.ss-cta:hover {
  color: #fff;
}

.ss-section {
  /* Scoped custom properties */
  --ss-bg: #faf9f7;
  --ss-card-bg: #ffffff;
  --ss-text: #222222;
  --ss-muted: #8b8b8b;
  --ss-radius: 12px;
  --ss-gap: 28px;
  --ss-max-width: 1100px;
  --ss-padding: 40px;

  background: var(--ss-bg);
  padding: 48px 0;
  color: var(--ss-text);
}

.ss-section .inner {
  max-width: var(--ss-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--ss-gap);
  align-items: center;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.6)
  );
  border-radius: var(--ss-radius);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.06);
}

.ss-section .text {
  padding: 6px 4px;
}

.ss-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
  color: var(--ss-accent);
}

.ss-section .lead {
  margin: 0 0 12px;
  color: var(--ss-muted);
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: 400;
}

.ss-section .body-text {
  margin: 0 0 12px;
  color: var(--ss-text);
  line-height: 1.6;
  font-size: 0.98rem;
}

.ss-section .cta {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: var(--ss-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.ss-section .cta:hover {
  background-color: var(--ss-accent-hover);
}

.ss-section .media {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: calc(var(--ss-radius) - 4px);
}

.ss-section .media OFFimg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  min-height: 220px;
}

@media (max-width: 880px) {
  .ss-section .inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .ss-section .media {
    order: -1;
    margin-bottom: 8px;
  }
}

@media (max-width: 420px) {
  .ss-section {
    --ss-padding: 20px;
    --ss-gap: 18px;
  }
  .ss-section h2 {
    font-size: 20px;
  }
  .ss-section .lead {
    font-size: 1rem;
  }
}

/* Checklist */
.ss-checklist {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ss-checklist li {
  display: flex;
  align-items: center;
  margin: 0;
  flex: 1 1 calc(50% - 10px);
}

.ss-checklist .ss-check-icon {
  fill: none;
  stroke: #4caf50;
  stroke-width: 3;
  margin-right: 5px;
  width: 24px;
  height: 24px;
}

@media (max-width: 500px) {
  .ss-checklist {
    flex-direction: column;
    align-items: flex-start;
  }

  .ss-checklist li {
    flex: 1 1 100%;
  }
}

/* Hero Section */
.ss-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("https://dummyimage.com/1400x900/cccccc/cccccc");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /*background-attachment: fixed; */
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
}

.ss-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.ss-hero .content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 20px;
}

.ss-hero h1 {
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  color: #fff;
}

.ss-hero p {
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 300;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .ss-hero {
    height: 500px;
  }
  .ss-hero h1 {
    font-size: 2.5rem;
  }
  .ss-hero p {
    font-size: 1.25rem;
  }
}

.ss-hero-short {
  height: 300px;
}

/* Cards */
.ss-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.ss-card-grid .ss-card {
  display: flex;
  flex-direction: column;
  background: #d9d9d9;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ss-card-grid .ss-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  background: #d1d1d1;
}

.ss-card-grid .card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ss-card-grid .card-body {
  flex-grow: 1; /* pushes footer down so cards align */
  padding: 16px;
  text-align: left;
}

.ss-card-grid .card-title {
  font-size: 1.1rem;
  margin: 0 0 10px;
  font-weight: 600;
  color: #333;
}

.ss-card-grid .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.ss-card-grid .card-footer {
  padding: 16px;
  text-align: center;
}

/* Collapsible */
/* Collapsible container */
.ss-collapsible details {
  margin-top: 10px;
}

/* Summary styling */
.ss-collapsible summary {
  padding: 9px 25px 9px 45px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  outline: none;
  list-style: none; /* helps in some browsers */
}

/* Hide native disclosure marker (cross-browser) */
.ss-collapsible summary::-webkit-details-marker {
  display: none; /* Chrome, Safari */
}
.ss-collapsible summary::marker {
  content: ""; /* Firefox */
}

/* Custom icon */
.ss-collapsible summary::before {
  content: "＋";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.3s ease;
  font-weight: 800;
  color: var(--ss-accent);
}

/* Rotate icon when open */
.ss-collapsible details[open] summary::before {
  transform: translateY(-50%) rotate(45deg);
}

/* Inner content */
.ss-collapsible details p {
  padding: 0 25px;
  margin: 0;
}

.ss-select {
  font-size: 12pt;
  padding: 10px 35px 10px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/assets/downarrow.svg") no-repeat right 10px center;
  background-size: 12px;
  border: solid 1px #ccc;
  outline: none;
  border-radius: 6px;
}

.ss-quantity {
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 12pt;
  width: 60px;
  border: solid 1px #ccc;
  border-radius: 6px;
}
