/* === TOOLBOX WRAPPER === */
.toolbox-wrapper {
  max-width: 800px;        /* controls overall width */
  margin: 0 auto;          /* centers all content */
  padding: 20px;
}

/* === INTRO & DISCLAIMER === */
.toolbox-intro,
.affiliate-disclaimer {
  margin-bottom: 16px;
  line-height: 1.6;
}

.affiliate-disclaimer {
  font-size: 14px;
  color: #111010;
  border-left: 4px solid #ff9900;
  background-color: #a705056e;
  padding: 10px;
  border-radius: 6px;
}

/* === TOOLBOX CONTAINER === */
#toolboxContainer {
  max-width: 800px;
  margin: 20px auto;
  padding: 0px;
}

/* === TOOL CARDS === */
.toolCard {
  background: #a70505;                /* softer than pure white */
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 18px;
  line-height: 1.4;                   /* slightly tighter text */
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.toolCard:hover {
  transform: translateY(-3px);        /* subtle hover lift */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* === TOOL IMAGE === */
.toolCard img {
  width: auto;
  max-height: 200px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* === TOOL NAME === */
.toolCard h3 {
  margin: 6px 0 8px;
  font-size: 20px;
  color: #222;
}

/* === TOOL REVIEW TEXT === */
.toolCard p {
  font-size: 15px;
  color: #0e0d0d;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* === CATEGORY LABEL === */
.toolCategory {
  margin-top: 10px;
  font-size: 13px;
  color: #100d0d;
  font-style: italic;
}

/* === AMAZON BUTTON === */
.amazonBtn {
  display: inline-block;
  background: #ff9900;      /* Amazon orange */
  color: #fff;
  padding: 9px 14px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.amazonBtn:hover {
  background: #e68a00;
}

.email-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #0073e6;
  text-decoration: none;
  font-size: 16px;
}

.email-link:hover {
  color: #005bb5;
  text-decoration: underline;
}
