/* ===================================================
   STELLMAN SUBPAGES & CALCULATORS STYLES
   (Strictly scoped to .stellman-page-wrap to preserve 
   100% of the authentic homepage and footer design)
   =================================================== */

:root {
  --stellman-gold: #ddbe9c;
  --stellman-gold-hover: #c9ab88;
  --stellman-gold-dark: #b8956c;
  --stellman-dark: #36353a;
  --stellman-dark-light: #434149;
  --stellman-dark-deep: #28272c;
  --stellman-card-bg: #2d2c32;
  --stellman-card-inner: #222126;
  --stellman-text-main: #f1f5f9;
  --stellman-text-muted: #94a3b8;
  --stellman-border: rgba(221, 190, 156, 0.22);
}

/* ===================================================
   SUBPAGES SCOPED LUXURY DARK THEME (.stellman-page-wrap)
   =================================================== */

.stellman-page-wrap {
  padding-top: 130px;
  padding-bottom: 90px;
  background-color: #2b2a2f;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(221, 190, 156, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(221, 190, 156, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(221, 190, 156, 0.04) 0%, transparent 40%),
    linear-gradient(180deg, #36353a 0%, #2a292e 50%, #201f24 100%);
  background-attachment: fixed;
  color: #ffffff;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.stellman-page-wrap a {
  color: #ddbe9c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.stellman-page-wrap a:visited {
  color: #ddbe9c;
}

.stellman-page-wrap a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .stellman-page-wrap {
    padding-top: 95px;
    padding-bottom: 60px;
  }
}

.stellman-page-wrap .st-block-header {
  margin-bottom: 40px;
  position: relative;
}

.stellman-page-wrap .st-page-title {
  padding-left: 75px;
  position: relative;
  color: #ffffff;
  font-family: "Engravers Gothic", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.stellman-page-wrap .st-page-title::before {
  content: '';
  position: absolute;
  width: 57px;
  height: 3px;
  background-color: #ddbe9c;
  top: 22px;
  left: 0;
}

.stellman-page-wrap .st-page-desc {
  padding-left: 75px;
  color: #cbd5e1;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  max-width: 960px;
}

.stellman-page-wrap .st-breadcrumbs {
  padding-left: 75px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 14px;
  font-family: 'Roboto', sans-serif;
}

.stellman-page-wrap .st-breadcrumbs a {
  color: #ddbe9c;
  text-decoration: none;
}

@media (max-width: 768px) {
  .stellman-page-wrap .st-page-title {
    font-size: 26px;
    padding-left: 45px;
  }
  .stellman-page-wrap .st-page-title::before {
    width: 35px;
    top: 15px;
  }
  .stellman-page-wrap .st-page-desc,
  .stellman-page-wrap .st-breadcrumbs {
    padding-left: 0;
    font-size: 14px;
  }
}

/* ===================================================
   BUTTON SYSTEM (Scoped to subpages & utility)
   =================================================== */

.st-btn-gold,
.st-btn-primary,
a.st-btn-gold,
a.st-btn-primary,
button.st-btn-gold,
button.st-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #ddbe9c !important;
  color: #242328 !important;
  font-family: "Engravers Gothic", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: 1.5px solid #ddbe9c !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 15px rgba(221, 190, 156, 0.35) !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
}

.st-btn-gold:visited,
.st-btn-primary:visited,
a.st-btn-gold:visited,
a.st-btn-primary:visited {
  color: #242328 !important;
}

.st-btn-gold:hover,
.st-btn-primary:hover,
a.st-btn-gold:hover,
a.st-btn-primary:hover,
button.st-btn-gold:hover,
button.st-btn-primary:hover {
  background-color: #c9ab88 !important;
  border-color: #c9ab88 !important;
  color: #1a191e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(221, 190, 156, 0.5) !important;
}

.st-btn-secondary,
.st-btn-outline,
a.st-btn-secondary,
a.st-btn-outline,
button.st-btn-secondary,
button.st-btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #222126 !important;
  color: #ddbe9c !important;
  font-family: "Engravers Gothic", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: 1.5px solid #ddbe9c !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
}

.st-btn-secondary:visited,
.st-btn-outline:visited,
a.st-btn-secondary:visited,
a.st-btn-outline:visited {
  color: #ddbe9c !important;
}

.st-btn-secondary:hover,
.st-btn-outline:hover,
a.st-btn-secondary:hover,
a.st-btn-outline:hover,
button.st-btn-secondary:hover,
button.st-btn-outline:hover {
  background-color: rgba(221, 190, 156, 0.15) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.st-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .st-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .st-btn-group a,
  .st-btn-group button {
    width: 100% !important;
    text-align: center;
  }
}

/* ===================================================
   LIGHTING CALCULATOR (DASHBOARD)
   =================================================== */

.st-light-calc-wide {
  background: #2d2c32;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--stellman-border);
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.st-light-calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 0;
}

@media (max-width: 1080px) {
  .st-light-calc-grid {
    grid-template-columns: 1fr;
  }
}

.st-light-col-left {
  padding: 36px 36px 40px;
  border-right: 1px solid var(--stellman-border);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.st-light-col-right {
  padding: 36px 32px 40px;
  background: linear-gradient(180deg, #242328 0%, #1e1d22 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .st-light-col-left,
  .st-light-col-right {
    padding: 24px 16px;
  }
}

.st-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.st-room-btn {
  padding: 14px 12px;
  background-color: #222126;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.st-room-btn:hover {
  border-color: #ddbe9c;
  background-color: #2b2a30;
}

.st-room-btn.active {
  border-color: #ddbe9c;
  background-color: rgba(221, 190, 156, 0.14);
  box-shadow: inset 0 0 0 1px #ddbe9c;
}

.st-room-btn .icon {
  font-size: 24px;
}

.st-room-btn strong {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.st-room-btn .lux-badge {
  font-size: 11px;
  color: #ddbe9c;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 4px;
}

.st-light-visualizer {
  border-radius: 10px;
  padding: 22px 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(221, 190, 156, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.st-light-visualizer.temp-3000k {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.2) 0%, rgba(245, 158, 11, 0.25) 100%);
  border-color: #f59e0b;
}

.st-light-visualizer.temp-4000k {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(203, 213, 225, 0.2) 100%);
  border-color: #ffffff;
}

.st-light-visualizer.temp-6000k {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.2) 0%, rgba(56, 189, 248, 0.25) 100%);
  border-color: #38bdf8;
}

.st-metrics-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .st-metrics-dashboard {
    grid-template-columns: 1fr;
  }
}

.st-metric-card {
  background: #1c1b20;
  border: 1px solid var(--stellman-border);
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
}

.st-metric-title {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.st-metric-val {
  font-family: "Panton - Bold", sans-serif;
  font-size: 22px;
  color: #ddbe9c;
}

.st-metric-sub {
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 4px;
}

.st-explainer-box {
  background: rgba(221, 190, 156, 0.08);
  border: 1px solid rgba(221, 190, 156, 0.25);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 20px;
  margin-bottom: 24px;
}

.st-explainer-box strong {
  color: #ddbe9c;
}

/* ===================================================
   CEILING COST CALCULATOR
   =================================================== */

.st-calc-all-in-one {
  background: #2d2c32;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stellman-border);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto 50px;
}

.st-calc-banner {
  background: linear-gradient(135deg, #242328 0%, #1e1d22 100%);
  padding: 24px 32px;
  border-bottom: 1px solid var(--stellman-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.st-calc-banner-title {
  color: #ddbe9c;
  font-family: "Engravers Gothic", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.st-calc-banner-tag {
  font-size: 13px;
  color: #cbd5e1;
  background: rgba(221, 190, 156, 0.12);
  border: 1px solid rgba(221, 190, 156, 0.3);
  padding: 4px 14px;
  border-radius: 999px;
}

.st-calc-main-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (max-width: 640px) {
  .st-calc-main-body {
    padding: 24px 16px;
    gap: 22px;
  }
  .st-calc-banner {
    padding: 18px 16px;
  }
}

.st-calc-group-title {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.st-calc-group-title::before {
  content: '';
  width: 14px;
  height: 2px;
  background-color: #ddbe9c;
  display: inline-block;
}

.st-calc-range-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.st-range-input {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #1f1e23;
  border-radius: 3px;
  outline: none;
}

.st-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ddbe9c;
  cursor: pointer;
  border: 2px solid #2f2e34;
  box-shadow: 0 0 12px rgba(221, 190, 156, 0.6);
}

.st-num-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.st-num-input {
  width: 85px;
  padding: 10px;
  background-color: #242328;
  border: 1px solid var(--stellman-border);
  border-radius: 6px;
  color: #ffffff;
  font-family: "Panton - Bold", sans-serif;
  font-size: 20px;
  text-align: center;
  outline: none;
}

.st-num-input:focus {
  border-color: #ddbe9c;
}

.st-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.st-options-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.st-option-btn {
  padding: 16px 14px;
  background-color: #222126;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.st-option-btn:hover {
  border-color: #ddbe9c;
  background-color: #2b2a30;
}

.st-option-btn.active {
  border-color: #ddbe9c;
  background-color: rgba(221, 190, 156, 0.14);
  box-shadow: inset 0 0 0 1px #ddbe9c;
}

.st-option-btn strong {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.st-option-btn .sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 5px;
  line-height: 1.4;
}

.st-option-btn .price-tag {
  font-size: 13px;
  color: #ddbe9c;
  font-weight: 700;
  margin-top: 8px;
}

.st-live-result-box {
  background: linear-gradient(135deg, #242328 0%, #1a191e 100%);
  border: 1.5px solid #ddbe9c;
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.st-live-result-label {
  font-size: 13px;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Roboto', sans-serif;
}

.st-live-result-price {
  font-family: "Panton - Bold", sans-serif;
  font-size: 38px;
  color: #ddbe9c;
  margin: 10px 0;
}

.st-live-result-details {
  font-size: 13px;
  color: #94a3b8;
}

@media (max-width: 640px) {
  .st-live-result-price {
    font-size: 28px;
  }
}

.st-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .st-form-row {
    grid-template-columns: 1fr;
  }
}

.st-input {
  width: 100%;
  padding: 14px 16px;
  background-color: #222126;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

.st-input:focus {
  border-color: #ddbe9c;
}

/* ===================================================
   PORTFOLIO & SERVICE GRID STYLES
   =================================================== */

.st-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
  padding-left: 75px;
}

@media (max-width: 768px) {
  .st-filter-wrap {
    padding-left: 0;
  }
}

.st-filter-btn {
  background: #242328;
  border: 1px solid rgba(221, 190, 156, 0.3);
  color: #cbd5e1;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Engravers Gothic", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.st-filter-btn:hover {
  border-color: #ddbe9c;
  color: #ffffff;
  background: #2d2c32;
}

.st-filter-btn.active {
  background: #ddbe9c;
  color: #242328;
  border-color: #ddbe9c;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(221, 190, 156, 0.35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.portfolio-item-card {
  background-color: #2d2c32;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stellman-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-item-card:hover {
  transform: translateY(-6px);
  border-color: #ddbe9c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background-color: #1e1d22;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-item-card:hover .portfolio-img-wrap img {
  transform: scale(1.06);
}

.portfolio-info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.portfolio-info h3 {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-info p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 14px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-tag {
  font-size: 11px;
  color: #ddbe9c;
  background: rgba(221, 190, 156, 0.12);
  border: 1px solid rgba(221, 190, 156, 0.25);
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
}

.st-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.st-service-card {
  background-color: #2d2c32;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stellman-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.st-service-card:hover {
  transform: translateY(-5px);
  border-color: #ddbe9c;
}

.st-service-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #1e1d22;
}

.st-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.st-service-card:hover .st-service-card-img img {
  transform: scale(1.05);
}

.st-service-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.st-service-card-title {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.st-service-card-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 20px;
}

.st-service-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.st-service-price {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 18px;
  color: #ffffff;
}

.st-service-price span {
  font-family: "Panton - Bold", sans-serif;
  font-size: 22px;
  color: #ddbe9c;
}

/* ===================================================
   EXPERT SERVICE & WHY BLOCKS
   =================================================== */

.st-expert-block {
  background-color: #2d2c32;
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--stellman-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .st-expert-block {
    padding: 24px 16px;
    margin-bottom: 25px;
  }
}

.st-expert-title {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 26px;
  color: #ddbe9c;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.st-expert-text {
  font-size: 15px;
  color: #d1d5db;
  line-height: 1.65;
  margin-bottom: 20px;
}

.st-steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.st-step-card {
  background: #222126;
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #ddbe9c;
}

.st-step-card strong {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 18px;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.st-step-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

.st-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.st-gallery-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: #222126;
  border: 1px solid rgba(221, 190, 156, 0.2);
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.st-gallery-card:hover {
  transform: translateY(-4px);
  border-color: #ddbe9c;
}

.st-gallery-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.st-gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.st-gallery-card:hover .st-gallery-card-img img {
  transform: scale(1.06);
}

.st-gallery-card-caption {
  padding: 14px 16px;
  background: #222126;
}

.st-gallery-card-caption h4 {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.st-gallery-card-caption p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.st-specs-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--stellman-border);
  margin: 24px 0;
}

.st-specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  background-color: #222126;
}

.st-specs-table th {
  background-color: #1a191e;
  padding: 16px 20px;
  font-family: "Engravers Gothic", sans-serif;
  font-size: 16px;
  color: #ddbe9c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.st-specs-table td {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #d1d5db;
}

.st-specs-table tr:hover td {
  background-color: rgba(221, 190, 156, 0.04);
}

.st-faq-item {
  background-color: #222126;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.st-faq-question {
  font-family: "Engravers Gothic", sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.st-faq-answer {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}
