/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

.elementor-editor-active .site-header, .wp-customizer .site-header{
	display:none;
}
.site-header {
    all: initial;
    display: block;
    font-family: inherit;
	position:fixed;
	max-width:100% !important;
	z-index:10;
	padding: 20px 0px;
}
a{
	color:unset;
}


body{
	font-family:Poppins;
}
/* Permette l’uso di .container come negli screenshot */
.site-header .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
}


/* ========== MAIN HEADER ========== */

.main-header {
    background: transparent;
    padding: 0px 0;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}


/* LOGO */
.header-logo img {
  max-height: 100px;
  height: auto;
  width: auto;          /* <-- al posto di fit-content */
  max-width: 100%;
  object-fit: contain;
  display: block;       /* evita micro-spazi/line-height */
  padding-bottom: 10px;
}
.page-header{
	display:none
}

.main-menu {
    text-align: center;
}

.main-menu .menu {
    list-style: none;
    display: inline-flex;
    gap: 35px;
    padding: 10px 25px;
    
}

.main-menu .menu a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    letter-spacing: 0.5px;
	font-weight:300;
	font-family:Poppins;
}
.main-menu .sub-menu a {

    font-size: 16px;
}

.blur{
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.blur-white{
    background: rgb(170 170 170 / 50%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
a.cta-button {
    color: white;
    background: #25D366;
    padding: 20px 60px;
    border-radius: 5px;
    font-family: "Hanken Grotesk", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
	transition:background 0.5s ease, color 0.5s ease;
}
a.cta-button img{
	display:none;
}
a.cta-button:hover{
	
	color:white;
	
}
/* =========================
   WRAPPER + GRIGLIA (4 COL)
========================= */
.servizi-grid-wrapper{
  width: 100%;
}

.servizi-grid{
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* responsive */
@media (max-width: 1024px){
  .servizi-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .servizi-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .servizi-grid{ grid-template-columns: 1fr; }
}


/* =========================
   CARD "CONTENITORE" (ex swiper-slide)
   - quadrata con aspect-ratio
========================= */
.servizi-grid .servizio-card{
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 3 / 5;      /* card quadrata */
  display: flex;
  align-items: stretch;
  justify-content: stretch;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

/* assicura piena altezza/larghezza del contenuto */
.servizi-grid .servizio-card .servizio-thumb{
  width: 100%;
  height: 100%;
}


/* =========================
   THUMB + OVERLAY + HOVER
   (questa parte è la tua, quasi identica)
========================= */
.servizio-thumb{
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;

  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* gradiente sopra immagine */
.servizio-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(14, 16, 63, 0) 0%,
    rgb(14 16 63 / 30%) 60%,
    rgb(14 16 63 / 66%) 100%
  );
}

/* overlay che sale */
.servizio-overlay{
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 75%);
  
  transition: background-color .45s ease;
  z-index: 1;
}

/* TITOLO */
.servizio-title{
  padding: 10px 0;
  margin: 0;

  font-family: 'Poppins';
  font-weight: 600;
  font-size: 22px;
  line-height: 25px;
  color: #fff;
  text-align: left;

  position: relative;
  z-index: 3;

  /* se vuoi mantenerlo come prima */
  transform: translateY(80px);
  transition: transform .45s ease;
}

.servizio-title.always-visible{
  margin-bottom: 8px;
}

/* CONTENUTO EXTRA */
.servizio-content{
  position: relative;
  z-index: 3;

  opacity: 0;
  transform: translateY(20px);
  transition: transform .45s ease, opacity .45s ease;
	height: 200px;
}

.servizio-riassunto{
  color: #fff;
  text-align: left;
  line-height: 20px;
  margin: 0 0 14px 0;

  opacity: 0;
  transform: translateY(15px);
  transition: transform .45s ease, opacity .45s ease;
}

/* HOVER */
.servizio-card:hover .servizio-overlay{
  background-color: #0b00a1c7;
}

.servizio-card:hover .servizio-content{
  opacity: 1;
	height:fit-content;
  transform: translateY(0);
}

.servizio-card:hover .servizio-riassunto{
  opacity: 1;
  transform: translateY(0);
}

.servizio-card:hover .cta-button{
  opacity: 1;
  transform: translateY(0);
}

/* leggero sollevamento titolo */
.servizio-card:hover .servizio-title.always-visible{
  transform: translateY(-8px);
}

button.cta-button{
	color: white;
    background: #25D366;
    padding: 10px 25px;
    border-radius: 5px;
    font-family: "Hanken Grotesk", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
	border:1px solid white;
	transition:background 0.5s ease, color 0.5s ease;
}
button.cta-button:hover{
	transform:scale(1.05);
	background: #04003B;
	color:white;
}

/* =========================
   (opzionale) CTA base
   Se già ce l'hai, ignora
========================= */


.cta-icon{
  width: 18px;
  height: 18px;
}

/* CARD */
.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* LINK */
.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* IMMAGINE */
.news-thumb {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}


/* CATEGORIA */
.news-cat {
    margin: 18px 20px 5px;
    font-size: 13px;
    text-transform: uppercase;
    opacity: .7;
}

/* TITOLO */
.news-title {
    margin: 0 20px 18px;
    font-size: 22px;
    font-weight: 600;
    color: #0E103F;
}

/* CTA */
.news-cta {
    margin: 0 20px 25px;
    padding: 12px 20px;
    border: 2px solid #0E103F;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #0E103F;
    transition: .2s ease;
}

.news-cta:hover {
    background: #0E103F;
    color: #fff;
}

.news-cta:hover .news-cta-icon {
    filter: brightness(0) invert(1);
}

.news-cta-icon {
    width: 18px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner{
	width:100%;
}
/* RESPONSIVE */
@media(max-width: 900px){
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
	a.cta-button {
    padding: 10px 30px;
    margin-bottom: 10px;
		white-space: normal;
}
}
.site-footer {
    background: #04003B;
    color: #fff;
	max-width:100% !important;
    font-family: inherit;
	    border-top: 1px solid white;
	padding-block-start: 0rem;
	padding-block-end: 0rem;
	padding-inline-start: 0px !important;
	padding-inline-end: 0px !important;
}

/* FOOTER TOP */
.footer-top {
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* COLUMN 1 — LOGO */
.footer-logo-img img {
    width: 70%;
    display: block;
    margin-bottom: 20px;
}
.footer-partners{
display: flex;
    align-items: center;
}
/* PARTNERS ICONS */

.footer-partners img {
    max-height: 50px;
    margin-right: 10px;
    width: auto;
}

/* COLUMN 2 — MENU */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 24px;
    letter-spacing: 0.5px;
	font-weight:200;
}
.footer-col a{
	text-decoration:none;
	font-weight:300;
}
.footer-col a:hover{
	color:#4b94c3;
}
.footer-col h5 {
    margin-bottom: 0px;
	margin-top: 10px;
    font-size: 20px;
    letter-spacing: 0.5px;
	font-weight:200;
	text-transform:uppercase;
	opacity:70%;
	padding-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
}

/* COLUMN 3 — NEWSLETTER */
.footer-newsletter h3 {
    margin-bottom: 20px;
    font-size: 15px;
}

.newsletter-form p {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
	flex-direction: column;
}
.newsletter-form br{
	display:none
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid white;
	background:#ffffff45;
	
}
.newsletter-form input::placeholder{
	color:white;
}

.newsletter-form button {
    background: #ffffff;
    color: #0E103F;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.newsletter-note {
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 15px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
	justify-content: flex-start;
	margin-top:50px;
}

.footer-social img {
    width: 30px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background: #ffffff;
    color: #0E103F;
    font-size: 13px;
}

.footer-bottom a {
    color: #0E103F;
    text-decoration: none;
    font-weight: 500;
}
/* freccia giù SOLO sulle voci con classe "arrowright" */
.main-menu .menu > li.arrowright > a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.main-menu .menu > li.arrowright > a::after{
  content: "▾";          /* angle down */
  font-size: 0.9em;
  line-height: 1;
  transform: translateY(1px);
  opacity: .9;
}


@media (min-width: 1024px) {

    /* ogni voce top-level è relativa, così il submenu può essere assoluto */
    .main-menu .menu > li {
        position: relative;
    }

    /* tutti i sub-menu: base dropdown per TUTTO il menu */
    .main-menu .menu li .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0;
        padding: 12px 16px;
        list-style: none;
		backdrop-filter:(18px);
        background: rgba(0,0,0,0.20);
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,.15);
        z-index: 9999;
        display: block !important;
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
		width:max-content;
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
		
    }
	.menu-item-725 .sub-menu{
		backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
	}

.main-menu .menu li.is-open > .sub-menu,
.main-menu .menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
	/* Megamenu CHIUSO: non deve “prendere” hover */
.main-menu .menu > li.megamenu > .sub-menu{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
	.main-menu .menu > li.megamenu > .sub-menu a{
		display:none;
	}
	.main-menu .menu > li.megamenu:hover > .sub-menu a{
		display:block;
	}
	
	
	

/* Megamenu APERTO: solo quando hoveri la voce principale */
.main-menu .menu > li.megamenu:focus-within > .sub-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* opzionale: un piccolo distacco */
.main-menu .menu > li.megamenu > .sub-menu{
  top: 50px;
}


    /* ========== MEGA MENU: "Macchine agricole" ========== */

.main-menu .menu > li.megamenu > .sub-menu {
    width: max-content;            /* allarga il pannello come nella 1ª foto */
    padding: 10px 20px;            /* più aria ai lati */
    background: rgba(0,0,0,0.20);     /* grigio trasparente */
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);    /* per Safari */
    border-radius: 18px;
    
    box-shadow: none;              /* niente ombra grossa “card bianca” */
    gap: 20px;                     /* più spazio tra le colonne */
	display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        transform: translateX(-20%) !important;
}


    /* ogni colonna del mega menu */
    .main-menu .menu > li.megamenu > .sub-menu > li.mega-col {
        list-style: none;
        flex: 0 0 auto;   /* larghezza in base al contenuto */
		text-align:left;
    }

    /* titolo colonna: Raccoglitrici, Andanatori, Soffiatori, Accessori */
    .main-menu .menu > li.megamenu > .sub-menu > li.mega-col > a {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
		font-size:16px;
        text-decoration: none;
    }

    /* lista interna (Supernova CLASSIC, Andanatore XL, ecc.): NON dropdown, ma elenco sotto */
    .main-menu .menu > li.megamenu > .sub-menu > li.mega-col > .sub-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;

        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
	.main-menu .menu > li.megamenu:hover > .sub-menu > li.mega-col > .sub-menu{
		visibility:visible;
	}

    .main-menu .menu > li.megamenu > .sub-menu > li.mega-col > .sub-menu > li > a {
        display: block;
        margin-bottom: 6px;
        font-weight: 400;
        text-decoration: none;
		font-size:16px;
		text-transform:capitalize;
    }

    .main-menu .menu > li.megamenu > .sub-menu > li.mega-col > .sub-menu > li > a:hover {
        text-decoration: underline;
    }
	/* Colori del testo nel mega menu */
.main-menu .menu > li.megamenu > .sub-menu a {
    color: #ffffff;
}

.main-menu .menu > li.megamenu > .sub-menu > li.mega-col > a {
    color: #ffffff;
}

.main-menu .menu > li.megamenu > .sub-menu > li.mega-col > .sub-menu > li > a {
    color: #ffffff;
}

}
.header-button button.cta-button{
	color:black;
	background:white;
}
@media only screen and (max-width:1300px){
	.main-menu .menu a{
		font-size:16px;
	}
}
@media only screen and (max-width:1200px){
	.main-menu .menu a{
		font-size:14px;
	}
}
.blog-grid{
  display: grid;
  gap: 24px;
}
.blog-grid-cols-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px){
  .blog-grid-cols-2{ grid-template-columns: 1fr; }
}

.blog-card{ background:#fff; border-radius:16px; overflow:hidden; }
.blog-card__media img{ width:100%; height:220px; object-fit:cover; display:block; }
.blog-card__body{ padding:16px; }
.blog-card__title{ margin:0 0 10px; font-size:18px; }
.blog-card__excerpt{ margin:0 0 12px; }
.blog-card__btn{ display:inline-block; padding:10px 14px; border-radius:8px; text-decoration:none; }

.blog-pagination ul{ display:flex; gap:8px; list-style:none; padding:0; margin:24px 0 0; }
.blog-pagination a, .blog-pagination span{ padding:8px 12px; border-radius:8px; text-decoration:none; }
.post-hero{
  position: relative;
  min-height: 320px;
  padding: 120px 20px 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.post-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.post-hero__inner{
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-hero__title{
  margin: 0;
  color: #fff;
}

.post-content__inner{
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #04003B;
    color: white;
    border: 1px solid #04003B;
    padding: 10px 25px;
    border-radius: 5px;
    font-family: "Hanken Grotesk", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}
span.wpcf7-list-item-label {
    font-size: 14px;
}
@media only screen and (max-width:900px){
	.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
	}
	.navbar-toggler {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.2);
}

.navbar-toggler:hover {
  background-color: #f8f9fa;
}
	.btn-close {
  background-color: #fff;
  padding: 10px !important;
	border:none !important;
  opacity: 1;
		width:35px;
}

.btn-close:hover {
  background-color: #f1f1f1;
}
	.navbar{
	background: rgb(170 170 170 / 50%);
    backdrop-filter: blur(5px);
	}
	.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible{
  box-shadow: none !important;
  outline: none !important;
}	
}

.cf7form__box {
    flex: 1;
    min-width: 250px;
}

.page-id-1485 .myimport-whatsapp-tab {
	display: none !important;
}

/* =============================================
   FORM PLASTICHE — CSS completo
   ============================================= */

.form-plastiche {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: inherit;
}

/* --- ROW: Nome / Mail / Telefono --- */
.form-plastiche__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid #b0c8e8;
  border-radius: 10px;
  overflow: hidden;
}

.form-plastiche__row .form-plastiche__field {
  border: none;
}

.form-plastiche__row .form-plastiche__field + .form-plastiche__field {
  border-left: 1.5px solid #b0c8e8;
}

.form-plastiche__row .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.form-plastiche__row input[type="text"],
.form-plastiche__row input[type="email"],
.form-plastiche__row input[type="tel"] {
  width: 100%;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  box-sizing: border-box;
}

.form-plastiche__row input::placeholder {
  color: #a0aec0;
}

/* --- SECTION: label + checkgroup --- */
.form-plastiche__section {
  border: 1.5px solid #b0c8e8;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-plastiche__label {
  font-size: 0.9rem;
  color: #1a1a2e;
  margin: 0;
  padding: 0;
}

/* --- CHECKGROUP: griglia 3 colonne --- */
.form-plastiche__checkgroup .wpcf7-form-control {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.form-plastiche__checkgroup .wpcf7-list-item {
  margin: 0 !important;
  padding: 0 !important;
}

/* Nasconde input nativo */
.form-plastiche__checkgroup .wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Bottone pill */
.form-plastiche__checkgroup .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1.5px solid #b0c8e8;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a2e;
  background: #ffffff;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
}

.form-plastiche__checkgroup .wpcf7-list-item label:hover {
  border-color: #2979c8;
  background: #f0f7ff;
}

/* Cerchio icona via ::before */
.form-plastiche__checkgroup .wpcf7-list-item label::before {
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid #b0c8e8;
  border-radius: 50%;
  background: #ffffff;
  box-sizing: border-box;
  transition: all 0.18s ease;
}

/* Stato CHECKED */
.form-plastiche__checkgroup .wpcf7-list-item:has(input:checked) label {
  background: #ddeeff;
  border-color: #1a5fa8;
  color: #1a5fa8;
  font-weight: 600;
}

.form-plastiche__checkgroup .wpcf7-list-item:has(input:checked) label::before {
  background-color: #1a5fa8;
  border-color: #1a5fa8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Focus accessibilità */
.form-plastiche__checkgroup .wpcf7-list-item:focus-within label {
  outline: 2px solid #1a5fa8;
  outline-offset: 2px;
}

/* --- TEXTAREA --- */
.form-plastiche__field--full {
  border: 1.5px solid #b0c8e8;
  border-radius: 10px;
  overflow: hidden;
}

.form-plastiche__field--full .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.form-plastiche__field--full textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: transparent;
  resize: vertical;
  min-height: 130px;
  box-shadow: none;
  border-radius: 0;
  box-sizing: border-box;
  font-family: inherit;
}

.form-plastiche__field--full textarea::placeholder {
  color: #a0aec0;
}

/* --- PRIVACY --- */
.ld-cf7-consents {
  border: none;
  border-radius: 10px;
}

.ld-cf7-consent .wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ld-cf7-consent .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid #b0c8e8;
  border-radius: 4px;
  cursor: pointer;
  accent-color: #1a5fa8;
  flex-shrink: 0;
}

.ld-cf7-consent .wpcf7-acceptance .wpcf7-list-item-label,
.ld-cf7-consent .wpcf7-acceptance span {
  font-size: 0.88rem;
  color: #1a1a2e;
}

/* --- SUBMIT --- */
.ld-cf7-submit input[type="submit"],
.ld-cf7-submit .wpcf7-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(90deg, #1a5fa8 0%, #2979c8 60%, #1a8ecb 100%);
  transition: opacity 0.2s ease, transform 0.15s ease;
  font-family: inherit;
}

.ld-cf7-submit input[type="submit"]:hover,
.ld-cf7-submit .wpcf7-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.ld-cf7-submit input[type="submit"]:active,
.ld-cf7-submit .wpcf7-submit:active {
  opacity: 1;
  transform: translateY(0);
}

/* --- MOBILE --- */
@media (max-width: 600px) {
  .form-plastiche__row {
    grid-template-columns: 1fr;
  }

  .form-plastiche__row .form-plastiche__field + .form-plastiche__field {
    border-left: none;
    border-top: 1.5px solid #b0c8e8;
  }

  .form-plastiche__checkgroup .wpcf7-form-control {
    grid-template-columns: 1fr !important;
  }
}

.form-plastiche__row p,
.form-plastiche__field p {
  margin: 0;
  padding: 0;
}

.form-plastiche__row .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.form-plastiche__row input[type="text"],
.form-plastiche__row input[type="email"],
.form-plastiche__row input[type="tel"] {
  display: block;
  width: 100%;
  box-sizing: border-box;
}