/* ═══════════════════════════════════════════
   ito ito Homepage New – Sektions-Styles
   Fonts + Nav + Hero kommen aus style.min.css
═══════════════════════════════════════════ */

/* Override margin-block-start on hero subheadline */
.page-start .animate-part.part-1 p.hero-subheadline {
  margin-block-start: 0 !important;
  margin-top: 16px !important;
}

/* Override Custom CSS negative margin on hero headline */
.page-start .animate-part.part-1 p.has-huge-font-size {
  margin-bottom: 0 !important;
}

/* CSS Variablen – nur falls nicht bereits im Theme definiert */
:root {
  --green: #12FF90;
  --purple: #6B4EFF;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray: #f5f5f5;
  --muted: #000000;
  --border: #e0e0e0;
  --radius: 16px;
}

/* Container – zentriert wie Hero-Content */
.ito-container {
  max-width: 1383px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%;
}

/* Section header spacing */
.ito-section-header {
  margin-bottom: 40px;
}

/* Font smoothing für alle neuen Sektionen */
.ito-products-section,
.ito-press-section,
.ito-why-section,
.ito-how-section,
.ito-shift-section,
.ito-pricing-section,
.ito-endorsed-section {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
}

@media (max-width: 900px) {
  .ito-container { padding: 0 20px; }
}

.ito-products-section {
  padding: 65px 0 0;
  background: var(--white);
}

.ito-products-section h2 {
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0;
}

.ito-products-title {
  font-weight: 600;
  display: block;
}

.ito-products-subtitle {
  font-weight: 400;
  display: block;
}

.ito-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid #B9B9B9;
}

.ito-product-card {
  background-color: #F6F7F6;
  border: 0.5px solid #B9B9B9;
  padding: 40px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: #000000;
}

.ito-product-card:hover { background-color: #EDEFED; }

.ito-product-card img {
  width: 100%;
  max-width: 240px;
  height: 240px;
  object-fit: contain;
  margin-bottom: 20px;
}

.ito-product-name {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 4px;
}

.ito-product-price {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 16px;
}

.ito-product-cta {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 20px;
  border: 1.5px solid #000000;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  opacity: 0;
  transition: opacity 0.2s;
}

.ito-product-card--empty {
  pointer-events: none;
  background-color: #F6F7F6;
}

.ito-product-card:hover .ito-product-cta { opacity: 1; }

/* ─── AS SEEN IN ─── */
.ito-press-section {
  padding: 45px 0;
  background: var(--white);
}

.ito-press-label {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  margin-bottom: 28px;
}

.ito-press-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ito-press-logos img {
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
}

/* Desktop logo heights */
.ito-press-logo-ntv         { height: 41px !important; }
.ito-press-logo-mut         { height: 74px !important; }
.ito-press-logo-textil      { height: 41px !important; }
.ito-press-logo-fashionunited { height: 41px !important; }



/* ─── WHY ITO ITO ─── */
.ito-why-section {
  padding: 0;
  height: 950px;
  background: #1e1e28;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ito-why-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.ito-why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(80,60,160,0.82) 0%, rgba(30,30,40,0.55) 55%, rgba(30,30,40,0.45) 100%);
}

.ito-why-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 65px;
  padding-bottom: 65px;
}

.ito-why-content .section-label {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ito-why-content h2 {
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0;
}

.ito-why-content h2 span.ito-why-title {
  font-weight: 600;
  display: block;
}

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

.ito-why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 28px 28px;
  height: auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.2s;
}

.ito-why-card:hover { background: #f5f5f5; }

.ito-why-icon-box {
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ito-why-icon {
  display: block;
  width: auto;
}

.ito-why-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.25;
}

.ito-why-card p {
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  line-height: 1.3;
}

/* ─── HOW IT WORKS ─── */
.ito-how-section {
  padding: 65px 0;
  background: #F5F5F5;
}

.ito-how-section h2 {
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #000000;
}

.ito-how-section h2 span.ito-how-title {
  font-weight: 600;
  display: block;
}

.ito-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.ito-how-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}

.ito-how-card-img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  background: #ffffff;
  padding: 24px 20px;
  flex-shrink: 0;
}

.ito-how-card-body {
  padding: 20px 20px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ito-how-card-body h3 {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.25;
}

.ito-how-card-body p {
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  line-height: 1.3;
}

.ito-how-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}

.ito-how-cta-row p {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.ito-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 80px 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.ito-btn-green:hover { background: #00e87d; }

/* ─── SHIFT ─── */
.ito-shift-section {
  padding: 65px 0;
  background: var(--white);
}

.ito-shift-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.ito-shift-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.ito-shift-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 16px;
  padding: 65px 40px;
  width: calc((100% - 3 * 20px) / 4 * 2 + 20px - 65px);
  flex-shrink: 0;
  margin: 65px 0 65px 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ito-shift-card .ito-shift-logo {
  height: 200px;
  width: auto;
  display: block;
  margin-bottom: 45px;
}

.ito-shift-card p {
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 45px;
  text-align: left;
}

.ito-btn-dark {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 80px 10px 30px;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 45px;
}

.ito-shift-partners {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding-top: 45px;
}

.ito-shift-partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 16px;
  position: relative;
}

.ito-shift-partner-item + .ito-shift-partner-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 125px;
  background: #000000;
}

.ito-shift-partners img {
  width: auto;
  object-fit: contain;
}

.ito-shift-partner-text {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}

/* ─── PRICING ─── */
.ito-pricing-section {
  padding: 65px 0;
  background: var(--gray);
}

.ito-pricing-section h2 {
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 32px;
}

.ito-pricing-section h2 span.ito-pricing-title {
  font-weight: 600;
  display: block;
}

.ito-pricing-inner {
  position: relative;
}

.ito-pricing-image-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: calc(460px - 40px);
  border-radius: 20px;
  overflow: hidden;
  top: 0;
}

.ito-pricing-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ito-pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.ito-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.ito-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.ito-toggle-label.active { color: var(--black); }

.ito-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
}

.ito-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }

.ito-toggle-track {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 100px;
  transition: background 0.25s;
}

.ito-toggle input:checked + .ito-toggle-track { background: #2d5a3d; }

.ito-toggle-thumb {
  position: absolute;
  top: 4px; left: 4px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  pointer-events: none;
}

.ito-toggle input:checked ~ .ito-toggle-thumb { transform: translateX(24px); }

.ito-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}

.ito-save-badge.visible { opacity: 1; transform: translateX(0); }

.ito-plan-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.ito-plan-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.ito-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.ito-price-left {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.ito-price-currency {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.ito-price-amount {
  font-size: 64px;
  line-height: 1;
  font-weight: 600;
  transition: opacity 0.2s;
}

.ito-price-period {
  font-size: 14px;
  color: var(--muted);
  align-self: center;
  padding-left: 4px;
}

.ito-saving-box-wrapper { position: relative; height: 76px; margin-bottom: 16px; }

.ito-saving-box {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ito-saving-box.visible { opacity: 1; pointer-events: auto; }
.ito-annual-saving { background: #b7ffdd; color: #235764; }
.ito-monthly-saving { background: #e5e3ef; color: #4f4092; }
.ito-annual-saving-original { font-size: 14px; font-weight: 400; text-decoration: line-through; color: #235764; }

.ito-features { display: flex; flex-direction: column; margin-bottom: 24px; }

.ito-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.ito-feature:last-child { border-bottom: none; }

.ito-check {
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ito-trial-block {
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.ito-trial-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ito-trial-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(2); }
}

.ito-trial-text { font-size: 14px; color: var(--muted); line-height: 1.5; }

.ito-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: var(--green);
  color: var(--black);
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.ito-cta-btn:hover { background: #00e87d; transform: translateY(-1px); }

.ito-cancel-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* ─── ENDORSED ─── */
.ito-endorsed-section {
  padding: 45px 0;
  background: #f0f0f0;
  border-top: 1px solid var(--border);
}

.ito-endorsed-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.ito-endorsed-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ito-endorsed-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}

/* ─── FOOTER ─── */
footer {
  background: #f5f5f5;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  line-height: 1.8;
  display: block;
}

.footer-col a:hover { text-decoration: underline; }

.footer-powered {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-powered img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  transition: border-color 0.2s;
}

.footer-social a:hover { border-color: var(--black); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }

  .hero { padding: 80px 20px 48px; min-height: auto; }
  .hero-sweater { width: 280px; height: 280px; transform: translate(-50%, -65%); }
  .hero-content h1 { font-size: 2rem; }
  .hero-release-teaser { display: none; }

  .ito-container { padding: 0 20px; }

  /* Section paddings mobile – 45px */
  .ito-products-section { padding-top: 45px !important; }
  .ito-press-section { padding: 45px 0 !important; }
  .ito-how-section { padding: 45px 0 !important; }
  .ito-shift-section { padding: 45px 0 !important; }
  .ito-pricing-section { padding: 45px 0 !important; }
  .ito-why-content { padding-top: 45px !important; padding-bottom: 45px !important; }

  /* Section headline font size + margin reset */
  .ito-products-section h2,
  .ito-how-section h2,
  .ito-pricing-section h2 {
    font-size: 1.5rem !important;
    line-height: 1.15 !important;
    margin-block-start: 0 !important;
    margin-top: 0 !important;
  }
  .ito-products-grid { grid-template-columns: repeat(2, 1fr); }

  .ito-press-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    align-items: center;
    justify-items: center;
    width: 100%;
  }
  .ito-press-logos img { max-width: 100%; object-fit: contain; }

  /* WHY */
  .ito-why-section { height: auto; }
  .ito-why-content { padding-top: 40px; padding-bottom: 40px; }
  .ito-why-content h2 { font-size: 1.5rem; margin-bottom: 300px; }
  .ito-why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ito-why-card { height: auto !important; min-height: 0 !important; padding: 12px 10px 12px !important; }
  .ito-why-icon-box { height: 44px !important; margin-bottom: 8px !important; }
  .ito-why-icon { max-height: 36px !important; }
  .ito-why-card h3 { font-size: 20px !important; margin-bottom: 6px !important; line-height: 1.2 !important; }
  .ito-why-card p { font-size: 14px !important; line-height: 1.3; }

  /* HOW */
  .ito-how-section h2 { font-size: 1.5rem; }
  .ito-how-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ito-how-card { height: auto !important; }
  .ito-how-card-img { height: 140px !important; padding: 12px !important; }
  .ito-how-card-body { padding: 10px 12px 12px !important; }
  .ito-how-card-body h3 { font-size: 20px !important; margin-bottom: 6px !important; line-height: 1.2 !important; }
  .ito-how-card-body p { font-size: 14px !important; line-height: 1.3; }
  .ito-how-cta-row { flex-direction: column; gap: 16px; text-align: center; }
  .ito-how-cta-row p { font-size: 20px !important; }

  /* PRICING */
  .ito-pricing-section h2 { font-size: 1.5rem !important; }

  /* SHIFT mobile */
  .ito-shift-section { padding: 0; }
  .ito-shift-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .ito-shift-bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 380px;
    object-fit: cover;
    flex-shrink: 0;
    margin-bottom: -60px;
  }
  .ito-shift-card {
    position: relative;
    z-index: 2;
    width: auto;
    margin: 0 0 32px;
    border-radius: 16px 16px 0 0;
    padding: 32px 24px;
    align-items: center;
    text-align: center;
  }
  .ito-shift-card .ito-shift-logo { height: 130px; margin-bottom: 24px; }
  .ito-shift-card p { font-size: 15px; margin-bottom: 28px; text-align: left; }
  .ito-shift-partners { padding-top: 28px; }
  .ito-shift-partner-item + .ito-shift-partner-item::before { height: 62px !important; }
  .ito-shift-partner-item img[alt="ito ito"] { height: 20px !important; }
  .ito-shift-partner-item img[alt="VORN"]    { height: 20px !important; }
  .ito-shift-partner-item img[alt="Stoll"]   { height: 36px !important; }

  .ito-shift-inner { grid-template-columns: 1fr; gap: 32px; }
  .shift-image { height: 280px; }

  .ito-pricing-image-bg { display: none; }
  .ito-pricing-card { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .ito-press-section .ito-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .ito-press-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    align-items: center;
    justify-items: center;
    width: 100%;
    box-sizing: border-box;
  }
  /* Individuelle Logo-Größen Mobile */
  .ito-press-logo-ntv {
    height: 28px !important;
    max-width: 100%;
    width: auto;
  }
  .ito-press-logo-mut {
    height: 48px !important;
    max-width: 100%;
    width: auto;
  }
  .ito-press-logo-textil {
    height: 28px !important;
    max-width: 100%;
    width: auto;
  }
  .ito-press-logo-fashionunited {
    height: 20px !important;
    max-width: 100%;
    width: auto;
  }
}

/* Release teaser scroll transition */
#ito-release-teaser {
  transition: opacity 0.3s ease;
}

@media (max-width: 767px) {
  .hero-subheadline { font-size: 15px !important; margin-top: 12px !important; }
  .has-huge-font-size.strong.hero-intro-text { line-height: 1.15 !important; }
  .hero-subheadline { margin-top: 20px !important; }
  /* Override custom CSS negative margin – same selector + media query wins */
  .page-start .animate-part.part-1 p.has-huge-font-size { margin-bottom: 0 !important; }
  .page-start .animate-part.part-1 .hero-subheadline { margin-top: 20px !important; }

  /* Press logos mobile – 900px breakpoint */
  .ito-press-logo-ntv         { height: 28px !important; max-width: 100%; }
  .ito-press-logo-mut         { height: 48px !important; max-width: 100%; }
  .ito-press-logo-textil      { height: 28px !important; max-width: 100%; }
  .ito-press-logo-fashionunited { height: 28px !important; max-width: 100%; }
}

/* Newsletter form Sign Up button – match site button style */
.page-template-page-start-new .entry-content input[type="submit"],
.page-template-page-start-new .mc4wp-form input[type="submit"] {
  font-family: 'EuclidCircularB', -apple-system, sans-serif !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 60px !important;
  padding: 12px 48px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  height: auto !important;
  cursor: pointer !important;
  display: inline-block !important;
  letter-spacing: 0 !important;
}

/* WP block buttons – asymmetric padding */
.wp-block-button__link,
.wp-element-button {
  padding: 18px 80px 18px 30px !important;
  border-radius: 60px !important;
  font-size: 15px !important;
  height: auto !important;
  cursor: pointer !important;
  letter-spacing: 0 !important;
}
