html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.trim-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #f7f9f5 0%, #ffffff 100%);
  padding: 54px 24px 38px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.trim-hero__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.trim-badge {
  display: inline-flex;
  align-items: center;
  background: #e9f7ed;
  color: #146b32;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.trim-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -1.8px;
  color: #151515;
  margin: 0 0 18px;
  font-weight: 900;
  max-width: 700px;
}

.trim-green-highlight {
  color: #007e41;
  display: block;
}

.trim-subtitle {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.4;
  color: #303030;
  margin: 0 0 20px;
  max-width: 640px;
  font-weight: 500;
}

.trim-price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 2px solid #e6e6e6;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  width: fit-content;
}

.trim-sale-badge {
  background: #ef2f2f;
  color: white;
  font-size: 20px;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1;
}

.trim-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trim-old-price {
  font-size: 28px;
  font-weight: 700;
  color: #999999;
  text-decoration: line-through;
}

.trim-new-price {
  font-size: 48px;
  font-weight: 900;
  color: #007e41;
  line-height: 1;
}

.trim-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 16px;
}

.trim-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #202020;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.trim-benefits li span {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trim-benefits strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin-bottom: 3px;
}

.trim-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  background: #007e41;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  padding: 18px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0,126,65,0.28);
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1;
  box-sizing: border-box;
}

.trim-cta:hover {
  transform: translateY(-2px);
}

.trim-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 700;
}

.trim-hero__image {
  position: relative;
  text-align: center;
}

.trim-hero__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 900px) {
  .trim-hero {
    padding: 22px 16px 30px;
  }

  .trim-hero__wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .trim-badge,
  .trim-hero h1,
  .trim-subtitle {
    text-align: center;
    justify-content: center;
  }

  .trim-hero h1 {
    font-size: 34px;
  }

  .trim-subtitle {
    font-size: 17px;
  }

  .trim-price-box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .trim-cta {
    width: 100%;
  }

  .trim-trust {
    justify-content: center;
    text-align: center;
  }
}

/* ===== price badge importato da wall-conv-5-it (palette 9999X) ===== */
.c4x-price-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(135deg, #fff4f2, #ffffff);
  border: 2px solid #ef2f2f;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(239,47,47,0.18);
  width: fit-content;
}
.c4x-price-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c4x-sale-badge {
  background: #ef2f2f;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(239,47,47,0.4);
  animation: c4x-badge-pulse 1.8s infinite;
}
@keyframes c4x-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.c4x-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.c4x-old-price {
  font-size: 28px;
  font-weight: 700;
  color: #999999;
  text-decoration: line-through;
}
.c4x-new-price {
  font-size: 48px;
  font-weight: 900;
  color: #007e41;
  line-height: 1;
}
.c4x-stock-bar {
  width: 100%;
  height: 10px;
  background: #f4d9d3;
  border-radius: 999px;
  overflow: hidden;
}
.c4x-stock-bar-fill {
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #ff5a4d, #ef2f2f);
  border-radius: 999px;
}
.c4x-stock-text {
  font-size: 14.5px;
  font-weight: 700;
  color: #B42318;
}
.c4x-stock-text strong {
  color: #ef2f2f;
  font-weight: 900;
}
@media (max-width: 900px) {
  .c4x-price-box {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .c4x-price-top {
    justify-content: center;
    width: 100%;
  }
  .c4x-stock-text {
    text-align: center;
  }
}

/* ====================== TRUST BOX ====================== */
.c4x-trust-box{
  max-width:920px;
  margin:24px auto 0;
  padding:30px 22px;
  background:#ffffff;
  border-radius:20px;
  box-shadow:0 10px 28px rgba(0,0,0,0.06);
  border:1px solid #f0f0f0;
  text-align:center;
  font-family:Arial, sans-serif;
  box-sizing:border-box;
}

.c4x-trust-header{
  font-size:18px;
  font-weight:900;
  color:#151515;
  margin-bottom:24px;
  letter-spacing:0.4px;
}

.c4x-trust-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:16px;
}

.c4x-trust-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  background:#fafafa;
  border-radius:14px;
  text-align:left;
  transition:all 0.25s ease;
  border:1px solid #f2f2f2;
}

.c4x-trust-item:hover{
  background:#ffffff;
  box-shadow:0 8px 20px rgba(0,126,65,0.08);
  border-color:#b7e3c6;
}

.c4x-trust-icon{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:50%;
  background:#007e41;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:23px;
  box-shadow:0 5px 12px rgba(0,126,65,0.18);
}

.c4x-trust-text{
  font-size:15px;
  line-height:1.45;
  color:#333333;
}

.c4x-trust-text strong{
  color:#151515;
  font-size:16px;
}

/* ====================== STOCK / SCARCITY ====================== */
.c4x-order-stock-section{
  max-width:920px;
  margin:24px auto 0;
  padding:0 22px;
  font-family:Arial, sans-serif;
  box-sizing:border-box;
}

.c4x-stock-title{
  font-size:18px;
  font-weight:800;
  color:#151515;
  margin-bottom:12px;
}

.c4x-stock-bar-bg{
  position:relative;
  width:100%;
  height:36px;
  background:#e9edf2;
  border-radius:10px;
  overflow:hidden;
}

.c4x-stock-bar-fill{
  height:100%;
  background:linear-gradient(90deg,#ff5a4d,#ef2f2f);
}

.c4x-stock-bar-label{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  padding:0 14px;
  font-size:13px;
  font-weight:900;
  color:#fff;
}

.c4x-warning-box{
  border:2px dashed #ef2f2f;
  border-radius:18px;
  padding:22px;
  text-align:center;
  margin:18px 0;
}

.c4x-warning-title{
  font-size:24px;
  font-weight:900;
  color:#ef2f2f;
}

.c4x-warning-subtitle{
  font-size:20px;
  font-style:italic;
  color:#ef2f2f;
  margin:10px 0;
}

.c4x-warning-text{
  font-size:18px;
  color:#d52f24;
}

@media(max-width:768px){
  .c4x-trust-box{
    padding:24px 14px;
    border-radius:16px;
  }

  .c4x-trust-header{
    font-size:15px;
    margin-bottom:18px;
    line-height:1.4;
  }

  .c4x-trust-list{
    grid-template-columns:1fr;
    gap:12px;
  }

  .c4x-trust-item{
    padding:14px;
    gap:12px;
  }

  .c4x-trust-icon{
    width:44px;
    height:44px;
    min-width:44px;
    font-size:20px;
  }

  .c4x-trust-text{
    font-size:14px;
  }

  .c4x-trust-text strong{
    font-size:15px;
  }

  .c4x-warning-title{
    font-size:20px;
  }

  .c4x-warning-subtitle{
    font-size:17px;
  }

  .c4x-warning-text{
    font-size:15px;
  }
}

.tx-cmp-section{width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);
background:linear-gradient(180deg,#ffffff 0%,#f7f9f5 100%);padding:12px 24px 76px;
font-family:Arial,sans-serif;box-sizing:border-box;overflow:hidden}
.tx-cmp-wrap{max-width:1180px;margin:0 auto}
.tx-cmp-header{text-align:center;max-width:820px;margin:0 auto 40px}
.tx-cmp-label{display:inline-flex;align-items:center;justify-content:center;background:#e9f7ed;
color:#146b32;font-size:15px;font-weight:800;padding:9px 14px;border-radius:999px;margin-bottom:18px}
.tx-cmp-header h2{font-size:clamp(30px,4vw,46px);line-height:1.08;letter-spacing:-1.2px;
color:#151515;margin:0 0 16px;font-weight:900}
.tx-cmp-header p{font-size:18px;line-height:1.55;color:#4a4a4a;margin:0;font-weight:500}
.tx-cmp-table{background:#ffffff;border-radius:24px;overflow:hidden;
box-shadow:0 18px 38px rgba(0,0,0,0.08);border:2px solid #eeeeee;max-width:880px;margin:0 auto 24px}
.tx-cmp-table-header{display:grid;grid-template-columns:1fr 1.3fr 1.3fr;
background:#007e41;color:#ffffff;font-size:15px;font-weight:900}
.tx-cmp-table-header div{padding:16px;text-align:center}
.tx-cmp-table-header div:first-child{text-align:left}
.tx-cmp-row{display:grid;grid-template-columns:1fr 1.3fr 1.3fr;border-top:1px solid #ececec}
.tx-cmp-row:nth-child(even){background:#fafafa}
.tx-cmp-comp,.tx-cmp-no,.tx-cmp-yes{padding:15px 16px;font-size:14.5px;line-height:1.4;text-align:center}
.tx-cmp-comp{font-weight:800;color:#151515;text-align:left;border-right:1px solid #ececec}
.tx-cmp-no{font-weight:700;color:#ef2f2f;border-right:1px solid #ececec}
.tx-cmp-yes{font-weight:700;color:#007e41}
.tx-cmp-cta-wrap{text-align:center}
.tx-cmp-cta{display:inline-flex;align-items:center;justify-content:center;background:#007e41;
color:#ffffff !important;text-decoration:none;font-size:20px;font-weight:900;padding:20px 34px;
border-radius:16px;box-shadow:0 16px 32px rgba(0,126,65,0.32);transition:all .2s ease;line-height:1}
.tx-cmp-cta:hover{transform:translateY(-2px)}
@media (max-width:900px){
.tx-cmp-section{padding:6px 16px 48px}
.tx-cmp-header{margin-bottom:28px}
.tx-cmp-label{font-size:13px;padding:8px 12px}
.tx-cmp-header h2{font-size:26px;line-height:1.12}
.tx-cmp-header p{font-size:16.5px}
.tx-cmp-table{border-radius:18px}
.tx-cmp-table-header,.tx-cmp-row{grid-template-columns:0.9fr 1fr 1fr}
.tx-cmp-table-header div,.tx-cmp-comp,.tx-cmp-no,.tx-cmp-yes{padding:10px 8px;font-size:11.5px}
.tx-cmp-cta{width:100%;font-size:18px;padding:18px}}

.reviews-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #f7f9f5 0%, #ffffff 100%);
  padding: 76px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.reviews-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 44px;
}

.reviews-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff7e8;
  color: #8a4b00;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.reviews-header h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: #151515;
  margin: 0 0 16px;
  font-weight: 900;
}

.reviews-header p {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.review-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
  border: 2px solid #eeeeee;
  display: flex;
  flex-direction: column;
}

.review-image {
  width: 100%;
  background: #f2f2f2;
}

.review-image img {
  width: 100%;
  height: auto;
  display: block;
}

.review-content {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-stars {
  color: #ffb400;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 900;
}

.review-content h3 {
  font-size: 22px;
  line-height: 1.15;
  color: #151515;
  margin: 0 0 12px;
  font-weight: 900;
}

.review-content p {
  font-size: 15.8px;
  line-height: 1.55;
  color: #303030;
  margin: 0 0 18px;
  font-weight: 500;
}

.review-badge {
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  background: #e9f7ed;
  color: #146b32;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .review-card {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .reviews-section {
    padding: 48px 16px;
  }

  .reviews-header {
    margin-bottom: 28px;
  }

  .reviews-label {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 16px;
  }

  .reviews-header h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .reviews-header p {
    font-size: 16.5px;
  }

  .review-card {
    border-radius: 20px;
  }

  .review-content {
    padding: 22px 18px 24px;
  }

  .review-content h3 {
    font-size: 21px;
  }

  .review-content p {
    font-size: 15.5px;
  }
}

.kit-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f5 100%);
  padding: 76px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.kit-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.kit-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.kit-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f7ed;
  color: #146b32;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.kit-header h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: #151515;
  margin: 0 0 16px;
  font-weight: 900;
}

.kit-header p {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.kit-table {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
  border: 2px solid #eeeeee;
}

.kit-table-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: #007e41;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.kit-table-header div {
  padding: 20px 24px;
}

.kit-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-top: 1px solid #ececec;
}

.kit-row:nth-child(even) {
  background: #fafafa;
}

.kit-component,
.kit-benefit {
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.45;
}

.kit-component {
  font-weight: 800;
  color: #151515;
  border-right: 1px solid #ececec;
}

.kit-benefit {
  font-weight: 500;
  color: #303030;
}

@media (max-width: 900px) {
  .kit-section {
    padding: 48px 16px;
  }

  .kit-header {
    margin-bottom: 28px;
  }

  .kit-label {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 16px;
  }

  .kit-header h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .kit-header p {
    font-size: 16.5px;
  }

  .kit-table {
    border-radius: 20px;
  }

  .kit-table-header {
    display: none;
  }

  .kit-row {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .kit-component {
    border-right: none;
    border-bottom: 1px solid #ececec;
    padding: 18px 18px 14px;
    font-size: 15.5px;
  }

  .kit-benefit {
    padding: 14px 18px 18px;
    font-size: 15px;
  }
}

.faq-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #f7f9f5 0%, #ffffff 100%);
  padding: 76px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.faq-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f7ed;
  color: #146b32;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.faq-header h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: #151515;
  margin: 0 0 16px;
  font-weight: 900;
}

.faq-header p {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 2px solid #eeeeee;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.055);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-size: 18px;
  line-height: 1.35;
  color: #151515;
  font-weight: 900;
}

.faq-item summary strong {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #e9f7ed;
  color: #007e41;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.faq-item[open] summary strong {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: #303030;
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 500;
}

.faq-trust-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.faq-trust-box div {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  color: #303030;
  font-size: 15px;
  font-weight: 800;
  padding: 11px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .faq-section {
    padding: 48px 16px;
  }

  .faq-header {
    margin-bottom: 28px;
  }

  .faq-label {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 16px;
  }

  .faq-header h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .faq-header p {
    font-size: 16.5px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    padding: 19px 18px;
  }

  .faq-item summary span {
    font-size: 16.5px;
  }

  .faq-item summary strong {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 24px;
  }

  .faq-answer {
    padding: 0 18px 20px;
    font-size: 15.5px;
  }

  .faq-trust-box {
    gap: 10px;
    margin-top: 24px;
  }

  .faq-trust-box div {
    font-size: 13.5px;
    padding: 10px 12px;
  }
}
body.trimmer9999x { margin:0; padding:0; overflow-x:hidden; background:#fff; }
.trim-form-wrap { max-width: 540px; margin: 28px auto 40px; padding: 0 16px; }
.trim-form-card { background:#fff; border:1px solid #eef0f2; border-radius:20px; box-shadow:0 10px 28px rgba(0,0,0,.08); padding:26px 22px; }
.trim-form-card h3 { margin:0 0 12px; font-family:Arial,sans-serif; font-size:22px; font-weight:900; text-align:center; }
.tm-order-form label { display:block; font-family:Arial,sans-serif; font-size:14px; font-weight:700; margin:0 0 6px; }
.tm-order-form input[type="text"], .tm-order-form input[type="tel"] {
  width:100%; padding:14px; margin-bottom:12px; border:1px solid #dce3e8; border-radius:12px; font-size:16px; font-family:Arial,sans-serif; box-sizing:border-box;
}
.tm-order-form br { display:none; }
.tm-order-form button {
  width:100%; min-height:56px; border:none; border-radius:12px; cursor:pointer;
  font-family:Arial,sans-serif; font-size:18px; font-weight:900; text-transform:uppercase;
  color:#fff; background:#1f8a3b; box-shadow:0 10px 22px rgba(20,107,50,.28);
}
.zt-form-note { text-align:center; font-size:13px; color:#5b6472; margin-top:12px; font-family:Arial,sans-serif; }
.site-footer{background:#0f172a;color:#cbd5e1;padding:2.5rem 0 1.5rem;font-size:.875rem;font-family:Arial,sans-serif}
.site-footer .container{width:min(100% - 2rem,1100px);margin-inline:auto}
.site-footer .site-logo{display:inline-flex;align-items:center;text-decoration:none}
.site-footer .site-logo__text{font-weight:900;font-size:1.5rem;letter-spacing:-.04em;text-transform:lowercase;line-height:1}
.site-footer .site-logo__text-primary{color:#fff}
.site-footer .site-logo__text-accent{background:linear-gradient(135deg,#fdba74 0%,#f97316 100%);-webkit-background-clip:text;background-clip:text;color:transparent;-webkit-text-fill-color:transparent}
.site-footer__grid{display:grid;gap:2rem;grid-template-columns:1fr;margin-bottom:2rem}
@media (min-width:768px){.site-footer__grid{grid-template-columns:1.2fr 1fr 1fr}}
.site-footer__heading{font-weight:700;color:#fff;margin-bottom:.75rem;font-size:1rem}
.site-footer__list{list-style:none;display:flex;flex-direction:column;gap:.5rem;padding:0;margin:0}
.site-footer__list a{color:#cbd5e1;text-decoration:none}
.site-footer__blurb{margin-top:1rem;max-width:340px;color:#94a3b8;line-height:1.5}
.site-footer__bottom{border-top:1px solid #334155;padding-top:1rem;text-align:center;font-size:.75rem;color:#94a3b8}
.site-footer__bottom a{color:#cbd5e1;text-decoration:none;font-weight:700}
