/*
Theme Name: Blocksy Child Beinto
Theme URI: https://beinto.pro
Description: Child theme for Be Into Advertising
Author: Be Into
Template: blocksy
Version: 1.0.0
Text Domain: blocksy-child
*/

:root {
    --pink: #ff3d7a;
    --pink-light: #ff6b9a;
    --dark: #050816;
    --dark2: #09001a;
    --text: #ffffff;
    --muted: #c9cedd;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Inter, Arial, sans-serif;
    background: #ffffff;
}

body.beinto-home {
    background: #fff;
    color: var(--dark);
}

.beinto-container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

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

.beinto-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.beinto-logo img {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 18px rgba(255,61,122,.25));
}

.beinto-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.beinto-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: .3s ease;
}

.beinto-menu a:hover {
    color: var(--pink);
}

/* =========================
   BUTTONS
========================= */

.beinto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(255, 61, 122, .35);
    transition: .3s ease;
}

.beinto-btn:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.beinto-btn.small {
    padding: 13px 24px;
    font-size: 14px;
}

.beinto-btn.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: none;
}

/* =========================
   HERO
========================= */

.beinto-hero,
.servizi-hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 35%, rgba(255,61,122,.65), transparent 32%),
        linear-gradient(135deg, #050816 0%, #09001a 35%, #34001d 65%, #ff2d75 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 140px;
}

.beinto-hero::before,
.servizi-hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255,61,122,.18);
    filter: blur(120px);
    right: -150px;
    top: -120px;
    z-index: 1;
}

.beinto-hero::after,
.servizi-hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -80px;
    height: 180px;
    background: #ffffff;
    border-radius: 50% 50% 0 0;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.eyebrow {
    display: block;
    color: var(--pink);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-size: 14px;
}

.hero-text h1 {
    font-size: clamp(44px, 5vw, 78px);
    line-height: 1.08;
    margin: 0 0 24px;
    color: #ffffff;
}

.hero-text h1 strong {
    color: var(--pink);
}

.hero-text p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-buttons .beinto-btn {
    min-width: 190px;
    justify-content: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    width: 520px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,.35));
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    position: relative;
    z-index: 4;
    margin-top: -20px;
    padding-top: 10px;
    padding-bottom: 70px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(9, 13, 35, .12);
    transition: all .35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0,0,0,.15);
}

.service-card .icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255,61,122,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    color: #070b1a;
}

.service-card p {
    color: #555b6d;
    line-height: 1.7;
    margin: 0;
}

/* =========================
   WHY SECTION
========================= */

.why-section {
    text-align: center;
    padding: 40px 0 90px;
}

.why-section h2 {
    font-size: clamp(34px, 4vw, 52px);
    margin: 0 0 18px;
}

.why-section h2 strong {
    color: var(--pink);
}

.why-section p {
    max-width: 760px;
    margin: 0 auto;
    color: #555b6d;
    font-size: 18px;
    line-height: 1.7;
}

/* =========================
   SERVIZI ICONS
========================= */

.servizi-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
}

.servizi-icons img {
    display: none !important;
}

.brand-logo-card {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    min-height: 150px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0,0,0,.22);
    transition: all .35s ease;
    font-size: 22px;
    font-weight: 700;
}

.brand-logo-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.16);
}

.brand-logo-card span:last-child {
    color: #ffffff;
}

.service-icon {
    font-size: 64px;
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 28px;
    background: rgba(255,255,255,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    transition: all .35s ease;
}

.service-icon:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,.18);
}

.service-icon i {
    font-size: inherit;
    line-height: 1;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servizi-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {

    .beinto-container {
        width: 90%;
    }

    .beinto-header {
        padding-top: 15px;
    }

    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .beinto-logo img {
        width: 190px;
    }

    .beinto-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .beinto-menu a {
        font-size: 12px;
    }

    .beinto-btn.small {
        display: none;
    }

    .beinto-hero,
    .servizi-hero {
        min-height: auto;
        padding-top: 190px;
        padding-bottom: 110px;
        text-align: center;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .hero-text {
        order: 1;
    }

    .hero-logo {
        order: 2;
    }

    .hero-text h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .hero-text p {
        font-size: 17px;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .beinto-btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-logo img {
        width: 260px;
        max-width: 90%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 26px;
    }

    .servizi-icons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        width: 100%;
    }

    .brand-logo-card {
        width: 100%;
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        justify-content: normal;
        text-align: left;
        min-height: 120px;
        padding: 20px 24px;
        gap: 22px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 38px;
        justify-self: center;
    }

    .brand-logo-card span:last-child {
        font-size: 18px;
        text-align: left;
    }
}
/* MOBILE - centra icone social */
@media (max-width: 768px) {

    .social-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .social-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
    }

    .social-icon {
        width: 74px;
        height: 74px;
        min-width: 74px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .social-icon i {
        font-size: 38px;
    }

    .social-text {
        text-align: left;
    }

}
/* FIX MOBILE SERVIZI - icone centrate */
@media (max-width: 640px) {

    .servizi-icons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 16px !important;
    }

    .brand-logo-card {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 80px 1fr !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: left !important;
        padding: 18px 22px !important;
    }

    .service-icon {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .service-icon i {
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
        line-height: 1 !important;
    }
}
/* FIX MOBILE SERVIZI - icone centrate dentro le card */
@media (max-width: 640px) {

    .servizi-icons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 18px !important;
        width: 100% !important;
    }

    .brand-logo-card {
        width: 100% !important;
        max-width: 280px !important;
        min-height: 155px !important;
        margin: 0 auto !important;
        padding: 24px 20px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 14px !important;

        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .service-icon {
        width: 76px !important;
        height: 76px !important;
        min-width: 76px !important;
        margin: 0 auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        font-size: 40px !important;
        position: relative !important;
        left: auto !important;
        transform: none !important;
    }

    .service-icon i {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        line-height: 1 !important;
    }

    .brand-logo-card span:last-child {
        text-align: center !important;
        font-size: 17px !important;
        line-height: 1.3 !important;
    }
}
/* =========================
   CHI SIAMO PAGE
========================= */

.chi-siamo-hero {
    padding-top: 180px;
    padding-bottom: 120px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    padding: 38px;
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}

.about-card i {
    font-size: 42px;
    color: #ff4f93;
    margin-bottom: 22px;
}

.about-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
}

.about-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.why-section {
    background: #f6f6f8;
    padding: 110px 0;
}

.why-box {
    background: #fff;
    border-radius: 34px;
    padding: 70px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.06);
}

.why-box h2 {
    font-size: 54px;
    line-height: 1.1;
    margin: 20px 0 30px;
    color: #111827;
}

.why-box p {
    font-size: 18px;
    line-height: 1.9;
    color: #5c6370;
    margin-bottom: 18px;
}

.vision-list {
    margin-top: 30px;
    padding-left: 0;
    list-style: none;
}

.vision-list li {
    margin-bottom: 16px;
    font-size: 18px;
    color: #222;
}

/* MOBILE */

@media (max-width: 768px) {

    .about-cards {
        grid-template-columns: 1fr;
    }

    .why-box {
        padding: 40px 28px;
    }

    .why-box h2 {
        font-size: 38px;
    }

    .about-card {
        text-align: center;
    }

}
/* PORTFOLIO PAGE */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0,0,0,.22);
    transition: all .35s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.16);
}

.portfolio-card img {
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.portfolio-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin: 0 0 12px;
}

.portfolio-card p {
    color: rgba(255,255,255,.78);
    line-height: 1.6;
    margin: 0 0 18px;
}

.portfolio-card a {
    color: #ff6b9a;
    text-decoration: none;
    font-weight: 800;
}

.portfolio-card-wide {
    grid-column: span 2;
}

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

    .portfolio-card,
    .portfolio-card-wide {
        grid-column: auto;
    }

    .portfolio-card img {
        max-width: 160px;
        max-height: 80px;
    }
}
/* =========================
   CONTATTI
========================= */

.contact-info {
    margin-top: 35px;
}

.contact-box {
    margin-bottom: 25px;
}

.contact-box h3 {
    color: #ff6b9a;
    margin-bottom: 8px;
}

.contact-box p {
    margin: 0;
}

.contact-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.contact-form-box {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0,0,0,.22);
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 15px;
    box-sizing: border-box;
}

.contact-form-box textarea {
    resize: vertical;
}

@media (max-width: 640px) {

   .contact-form-box {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
}

}
.why-box hr {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 40px 0;
}

.why-box h3 {
    color: #111827;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.why-box strong {
    color: #ff3d7a;
}
.about-icon {
    display: block;
    font-size: 42px;
    margin-bottom: 22px;
}
.booking-card,
.airbnb-card{
    min-height:220px;
}

.booking-card i,
.airbnb-card i{
    font-size:90px;
    display:block;
    margin-bottom:20px;
}

.booking-card span,
.airbnb-card span{
    font-size:24px;
    font-weight:700;
}

.booking-card{
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );
}

.airbnb-card{
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );
}
.beinto-share{
    text-align:center;
    padding:60px 20px;
    background:#050816;
}

.beinto-share h3{
    color:#fff;
    font-size:28px;
    margin-bottom:25px;
}

.share-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.share-buttons a{
    padding:12px 22px;
    border-radius:30px;
    background:#ff3d7a;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

.share-buttons a:hover{
    background:#ff6b9a;
}
.facebook-link{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#1877f2;
    color:#ffffff !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
    padding:0 !important;
    font-size:18px !important;
    box-shadow:0 12px 28px rgba(24,119,242,.35);
}

.facebook-link:hover{
    background:#0d65d9;
    color:#ffffff !important;
    transform:translateY(-3px);
}

@media(max-width:640px){
    .facebook-link{
        width:34px;
        height:34px;
        min-width:34px;
        font-size:15px !important;
    }
}
@media (max-width: 768px){

    .beinto-menu{
        display:none !important;
    }

    .facebook-link{
        display:none !important;
    }

    .beinto-btn.small{
        display:none !important;
    }

    .header-inner{
        justify-content:center !important;
    }

    .beinto-logo img{
        max-width:180px;
        height:auto;
    }

}
.mobile-menu-toggle,
.beinto-mobile-menu{
    display:none;
}

@media(max-width:768px){

    .beinto-menu,
    .beinto-btn.small{
        display:none !important;
    }

    .header-inner{
        flex-direction:row !important;
        justify-content:space-between !important;
        align-items:center !important;
    }

    .beinto-logo img{
        width:165px !important;
    }

    .mobile-menu-toggle{
        display:flex;
        width:42px;
        height:42px;
        border:1px solid rgba(255,255,255,.25);
        border-radius:50%;
        background:rgba(255,255,255,.10);
        color:#fff;
        align-items:center;
        justify-content:center;
        font-size:24px;
        cursor:pointer;
    }

    .beinto-mobile-menu{
        display:none;
        width:90%;
        margin:14px auto 0;
        padding:18px;
        border-radius:22px;
        background:rgba(5,8,22,.92);
        backdrop-filter:blur(12px);
        border:1px solid rgba(255,255,255,.12);
        box-shadow:0 20px 50px rgba(0,0,0,.25);
    }

    body.mobile-menu-open .beinto-mobile-menu{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .beinto-mobile-menu a{
        color:#fff;
        text-decoration:none;
        font-weight:700;
        padding:10px 12px;
        border-radius:12px;
    }

    .beinto-mobile-menu a:hover{
        background:#ff3d7a;
    }
}
/* FOOTER */

.beinto-footer{
    background:#050816;
    border-top:1px solid rgba(255,255,255,.08);
    padding:30px 0;
}

.beinto-footer-inner{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-copyright{
    color:#ffffff;
    font-size:14px;
}

.footer-links{
    display:flex;
    gap:20px;
}

.footer-links a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff3d7a;
}

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

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#ff3d7a;
    transform:translateY(-3px);
}

.footer-social i{
    font-size:18px;
}

.share-buttons i{
    margin-right:8px;
}

@media(max-width:768px){

    .beinto-footer-inner{
        flex-direction:column;
        text-align:center;
    }

    .footer-links{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }
}
/* SHOP PAGE */

.shop-hero{
    min-height:auto;
    padding-bottom:130px;
}

.shop-layout{
    position:relative;
    z-index:3;
}

.shop-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    margin-top:60px;
}

.product-card{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    backdrop-filter:blur(14px);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.product-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.product-info{
    padding:38px;
}

.product-badge{
    display:inline-block;
    background:#ff3d7a;
    color:#fff;
    padding:7px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:800;
    margin-bottom:18px;
}

.product-info h2{
    color:#fff;
    font-size:32px;
    margin:0 0 18px;
}

.product-info p,
.product-info li{
    color:#d7d7d7;
    line-height:1.7;
}

.product-info ul{
    padding-left:20px;
    margin-bottom:22px;
}

.product-info label{
    display:block;
    color:#fff;
    font-weight:700;
    margin-bottom:8px;
}

.product-info select{
    width:100%;
    padding:14px;
    border-radius:14px;
    border:0;
    margin-bottom:24px;
}

.product-price{
    color:#fff;
    font-size:34px;
    font-weight:900;
    margin-bottom:25px;
}

.mini-cart{
    background:#fff;
    color:#050816;
    border-radius:30px;
    padding:32px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    align-self:start;
    position:sticky;
    top:30px;
}

.mini-cart h3{
    font-size:26px;
    margin-top:0;
}

.empty-cart{
    color:#6b7280;
}

.cart-row{
    display:flex;
    justify-content:space-between;
    gap:15px;
    border-bottom:1px solid #e5e7eb;
    padding-bottom:18px;
    margin-bottom:18px;
}

.cart-total{
    font-size:22px;
    margin:25px 0;
}

.paypal-btn{
    width:100%;
    border:0;
    background:#ffc439;
    color:#111;
    padding:16px;
    border-radius:40px;
    font-size:17px;
    font-weight:900;
    cursor:pointer;
}

.paypal-btn:disabled{
    opacity:.45;
    cursor:not-allowed;
}

@media(max-width:900px){
    .shop-grid{
        grid-template-columns:1fr;
    }

    .product-card{
        grid-template-columns:1fr;
    }

    .mini-cart{
        position:static;
    }
}

@media(max-width:640px){
    .product-info{
        padding:26px;
    }

    .product-info h2{
        font-size:26px;
    }

    .product-price{
        font-size:30px;
    }
}
.cart-shipping{
    background:#f3f4f6;
    padding:12px 15px;
    border-radius:14px;
    margin:20px 0;
    color:#111827;
}

.shipping-row{
    background:#f9fafb;
    border-radius:12px;
    padding:12px;
}

.cart-row-actions{
    display:flex;
    align-items:center;
    gap:10px;
}
/* SELECT TAGLIE SHOP */

.product-info select{
    width:100%;
    height:52px;
    padding:0 15px;
    background:#ffffff;
    color:#111827;
    border:2px solid rgba(255,255,255,.2);
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    margin-bottom:25px;
    appearance:auto;
}

.product-info select option{
    background:#ffffff;
    color:#111827;
}

.product-info label{
    display:block;
    margin-bottom:8px;
    color:#ffffff;
    font-weight:700;
    font-size:15px;
}
.products-list{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.cart-row-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.remove-cart-item{
    border:0;
    background:#ff3d7a;
    color:#fff;
    width:26px;
    height:26px;
    border-radius:50%;
    cursor:pointer;
    font-weight:900;
}

.cart-shipping{
    background:#f3f4f6;
    padding:12px 15px;
    border-radius:14px;
    margin:20px 0;
    color:#111827;
}

.shipping-row{
    background:#f9fafb;
    border-radius:12px;
    padding:12px;
}
.product-share{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:18px;
    flex-wrap:wrap;
}

.product-share span{
    color:#d1d5db;
    font-size:14px;
    font-weight:700;
}

.product-share a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.product-share a:hover{
    background:#ff3d7a;
    transform:translateY(-2px);
}

.products-list{
    display:flex;
    flex-direction:column;
    gap:35px;
}
.product-image{
    cursor:pointer;
    transition:.4s;
}

.product-image:hover{
    transform:scale(1.03);
}

.image-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    z-index:99999;
    display:none;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.image-modal.active{
    display:flex;
}

.image-modal img{
    max-width:90%;
    max-height:90vh;
    border-radius:20px;
    box-shadow:0 25px 80px rgba(0,0,0,.5);
}

.close-modal{
    position:absolute;
    top:20px;
    right:25px;
    font-size:50px;
    color:#fff;
    cursor:pointer;
    line-height:1;
}

@media(max-width:768px){
    .image-modal img{
        max-width:95%;
        max-height:85vh;
    }

    .close-modal{
        font-size:42px;
        top:15px;
        right:18px;
    }
}
/* LOGO MERIDIANA SHOP */

.shop-brand-logo{
    text-align:center;
    margin:25px 0 35px;
}

.shop-brand-logo img{
    max-width:320px;
    width:100%;
    height:auto;
    display:inline-block;
    filter:drop-shadow(0 15px 40px rgba(0,0,0,.25));
    transition:.3s;
}

.shop-brand-logo img:hover{
    transform:scale(1.03);
}

@media(max-width:768px){

    .shop-brand-logo img{
        max-width:220px;
    }

}
/* SHOP MOBILE - schede prodotto più compatte */
@media (max-width: 640px){

    .shop-hero{
        padding-top: 120px !important;
        padding-bottom: 70px !important;
    }

    .shop-grid{
        gap: 22px !important;
        margin-top: 30px !important;
    }

    .products-list{
        gap: 24px !important;
    }

    .product-card{
        border-radius: 22px !important;
        overflow: hidden;
    }

    .product-card img{
        max-height: 230px !important;
        object-fit: cover !important;
    }

    .product-info{
        padding: 22px 20px !important;
        text-align: center;
    }

    .product-info h2{
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 14px !important;
    }

    .product-info p{
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 14px !important;
    }

    .product-info ul{
        margin: 12px auto 18px !important;
        padding-left: 18px !important;
        max-width: 230px;
        text-align: left;
        font-size: 13px;
    }

    .product-badge{
        padding: 6px 12px !important;
        font-size: 12px !important;
        margin-bottom: 14px !important;
    }

    .product-info label{
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .product-info select{
        height: 44px !important;
        padding: 0 12px !important;
        font-size: 15px !important;
        margin-bottom: 14px !important;
    }

    .product-price{
        font-size: 28px !important;
        margin-bottom: 18px !important;
    }

    .product-info .beinto-btn{
        padding: 13px 20px !important;
        font-size: 14px !important;
        width: 100%;
        max-width: 240px;
    }

    .product-share{
        justify-content: center;
        margin-top: 14px !important;
    }

    .product-share a{
        width: 34px !important;
        height: 34px !important;
    }

    .mini-cart{
        border-radius: 22px !important;
        padding: 24px 20px !important;
    }
}
.product-image-link{
    display:block;
    overflow:hidden;
}

.product-title-link{
    color:#ffffff;
    text-decoration:none;
}

.product-title-link:hover{
    color:#ff3d7a;
}

.product-view-btn{
    margin-bottom:14px;
}

.shop-info-btn{
    display:block;
    text-align:center;
    text-decoration:none;
}
.product-brand{
    display:block;
    color:#ff3d7a;
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}
/* FIX DEFINITIVO TITOLO PRODOTTO SINGOLO */
.single-product-title,
.product-info h1,
.product-info h1 a,
.product-card .product-info h1,
.shop-hero .product-info h1{
    color:#ffffff !important;
    opacity:1 !important;
    text-shadow:0 4px 18px rgba(0,0,0,.45) !important;
}
/* LOGO MERIDIANA PAGINA PRODOTTO */

.product-brand-logo{
    text-align:center;
    margin-bottom:20px;
}

.product-brand-logo img{
    max-width:180px;
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
    transition:.3s;
}

.product-brand-logo img:hover{
    transform:scale(1.03);
}
.product-brand-logo img{
    max-width:260px;
}
.product-reviews-section{
    background:#f6f6f8;
}

/* SEZIONE RECENSIONI MERIDIANA */

.product-reviews-section{
    background:linear-gradient(135deg,#020024 0%,#2a0632 40%,#ff2f7d 100%);
    padding:80px 0;
}

.reviews-box{
    max-width:1000px;
    margin:0 auto;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    padding:50px;
}

.reviews-box h2{
    color:#ffffff;
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.no-reviews{
    text-align:center;
    color:#e5e7eb;
}

.product-review{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:22px;
    margin-bottom:20px;
}

.review-stars{
    color:#ffb400;
    font-size:24px;
    margin-bottom:8px;
}

.product-review strong{
    color:#ffffff;
    display:block;
    margin-bottom:10px;
}

.product-review p{
    color:#f3f4f6;
    margin:0;
}

.reviews-box .comment-reply-title,
.reviews-box label{
    color:#ffffff !important;
}

.reviews-box .logged-in-as,
.reviews-box .comment-notes{
    color:#d1d5db !important;
}

.reviews-box textarea,
.reviews-box input[type="text"],
.reviews-box input[type="email"],
.reviews-box select{
    background:rgba(255,255,255,.95) !important;
    color:#111827 !important;
    border-radius:14px;
    border:0 !important;
}

.reviews-box textarea{
    min-height:140px;
}

.reviews-box .form-submit input{
    background:#ff3d7a !important;
    color:#fff !important;
    border:none !important;
    border-radius:30px !important;
    padding:14px 30px !important;
    font-weight:700;
    box-shadow:0 10px 30px rgba(255,61,122,.35);
}

.reviews-box .form-submit input:hover{
    background:#ff5a92 !important;
}
}
/* FIX SELECT VALUTAZIONE RECENSIONI */

.reviews-box .comment-form-rating select,
.product-reviews-section .comment-form-rating select,
#rating{
    display:block !important;
    width:100% !important;
    max-width:360px !important;
    height:48px !important;
    padding:0 14px !important;
    background:#ffffff !important;
    color:#111827 !important;
    border:1px solid #d1d5db !important;
    border-radius:12px !important;
    font-size:15px !important;
    font-weight:600 !important;
    line-height:48px !important;
    opacity:1 !important;
    appearance:auto !important;
    -webkit-appearance:menulist !important;
}

.reviews-box .comment-form-rating select option,
.product-reviews-section .comment-form-rating select option,
#rating option{
    background:#ffffff !important;
    color:#111827 !important;
}

.comment-form-rating{
    max-width:360px !important;
    margin:0 auto 22px !important;
}
/* SHOP PRODOTTO + RECENSIONI PIÙ COMPATTI */

/* Desktop */
.shop-hero .shop-grid{
    max-width:920px !important;
    margin:40px auto 0 !important;
    grid-template-columns:1fr !important;
}

.shop-hero .product-card{
    max-width:820px !important;
    margin:0 auto !important;
    grid-template-columns:1fr 1fr !important;
}

.shop-hero .product-card > img{
    max-height:520px !important;
}

.shop-hero .product-info{
    padding:32px !important;
}

.single-product-title{
    font-size:42px !important;
}

.product-reviews-section{
    padding:60px 0 75px !important;
}

.reviews-box{
    max-width:760px !important;
    padding:38px !important;
    margin:0 auto !important;
}

.reviews-box h2{
    font-size:34px !important;
}

.product-review{
    padding:18px !important;
    margin-bottom:16px !important;
}

/* Mobile */
@media(max-width:640px){

    .shop-hero{
        padding-top:105px !important;
        padding-bottom:55px !important;
    }

    .shop-hero .shop-grid{
        max-width:330px !important;
        width:92% !important;
        margin:25px auto 0 !important;
        gap:20px !important;
    }

    .shop-hero .product-card{
        max-width:330px !important;
        grid-template-columns:1fr !important;
        border-radius:22px !important;
    }

    .shop-hero .product-card > img{
        max-height:250px !important;
        object-fit:cover !important;
    }

    .shop-hero .product-info{
        padding:22px 20px !important;
        text-align:center !important;
    }

    .product-brand-logo img{
        max-width:150px !important;
    }

    .single-product-title{
        font-size:30px !important;
        line-height:1.1 !important;
    }

    .product-info p,
    .product-info li{
        font-size:13px !important;
        line-height:1.55 !important;
    }

    .product-price{
        font-size:26px !important;
    }

    .paypal-btn{
        padding:12px 16px !important;
        font-size:14px !important;
    }

    .product-reviews-section{
        padding:45px 0 60px !important;
    }

    .reviews-box{
        max-width:330px !important;
        width:92% !important;
        padding:26px 18px !important;
        border-radius:24px !important;
    }

    .reviews-box h2{
        font-size:30px !important;
        line-height:1.2 !important;
    }

    .product-review{
        padding:16px !important;
        border-radius:16px !important;
    }

    .review-stars{
        font-size:20px !important;
    }

    .reviews-box .comment-form{
        max-width:100% !important;
    }

    .reviews-box .comment-form textarea{
        min-height:115px !important;
    }
}
.beinto-trustpilot{
    width:100%;
    text-align:center;
    padding:22px 20px 5px;
}

.beinto-trustpilot a{
    display:inline-flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    padding:14px 22px;
    border-radius:50px;
}

.trustpilot-stars{
    color:#00b67a;
    font-size:22px;
    letter-spacing:2px;
}

.trustpilot-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.trustpilot-text strong{
    color:#fff;
    font-size:15px;
}

.trustpilot-text span{
    color:#b8c0cc;
    font-size:13px;
}

@media(max-width:640px){
    .beinto-trustpilot a{
        flex-direction:column;
        border-radius:24px;
    }

    .trustpilot-text{
        align-items:center;
        text-align:center;
    }
}
/* PAGINE SERVIZI DETTAGLIO */

.service-detail-hero{
    min-height:auto;
}

.service-detail-card{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.14);
    border-radius:30px;
    padding:45px;
    backdrop-filter:blur(14px);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.service-detail-card > i{
    width:100px;
    height:100px;
    border-radius:28px;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:50px;
    margin-bottom:25px;
}

.service-detail-card h2{
    color:#fff;
    font-size:34px;
    margin:0 0 24px;
}

.service-detail-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.service-detail-card li{
    color:#e5e7eb;
    margin-bottom:14px;
    font-size:17px;
}

.service-share{
    margin-top:30px;
}

@media(max-width:768px){
    .service-detail-card{
        padding:30px 24px;
        text-align:center;
    }

    .service-detail-card > i{
        margin:0 auto 24px;
    }

    .service-detail-card li{
        text-align:left;
    }

    .service-share{
        justify-content:center;
    }
}
/* CARD SERVIZI */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
    margin-top:50px;
}

.brand-logo-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:15px;

    min-height:180px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    text-decoration:none;
    color:#fff;

    transition:.35s;
    backdrop-filter:blur(10px);
}

.brand-logo-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.12);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.service-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#ff4d8d,#ff7aa8);

    font-size:28px;
    color:#fff;
}

.brand-logo-card span:last-child{
    font-size:18px;
    font-weight:700;
    text-align:center;
}
.footer-social{
    display:flex;
    justify-content:center;
    gap:15px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-3px);
}

.footer-social .fa-facebook-f{
    color:#1877f2;
}

.footer-social .fa-instagram{
    color:#e4405f;
}
.header-social a[aria-label="Instagram"] i{
    color:#e4405f !important;
}
/* WHATSAPP CHAT */

.whatsapp-chat{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:99999;

    display:flex;
    align-items:center;
    gap:10px;

    background:#25d366;
    color:#ffffff !important;

    padding:14px 20px;
    border-radius:50px;

    text-decoration:none;
    font-weight:800;
    font-size:15px;

    box-shadow:0 15px 35px rgba(37,211,102,.35);
    transition:.3s;
}

.whatsapp-chat i{
    font-size:24px;
}

.whatsapp-chat:hover{
    transform:translateY(-3px);
    background:#1ebe5d;
}

@media(max-width:640px){

    .whatsapp-chat{
        right:16px;
        bottom:16px;
        width:56px;
        height:56px;
        padding:0;
        justify-content:center;
        border-radius:50%;
    }

    .whatsapp-chat span{
        display:none;
    }

    .whatsapp-chat i{
        font-size:28px;
    }
}
.service-seo-content{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
}

.service-seo-content h2{
    color:#ffffff;
    font-size:1.3rem;
    margin:20px 0 10px;
}

.service-seo-content p{
    color:#e5e5e5;
    line-height:1.8;
    margin-bottom:15px;
}
.vision-list a{
    color:#ff3d7a;
    text-decoration:none;
    font-weight:800;
}

.vision-list a:hover{
    color:#ff6b9a;
}
.service-card{
    text-decoration:none;
    color:inherit;
}
.why-section .hero-buttons{
    gap:15px;
}

.why-section .beinto-btn.outline{
    background:#ffffff;
    color:#ff3d7a;
    border:2px solid #ff3d7a;
    box-shadow:0 8px 25px rgba(255,61,122,.15);
}
.why-section{
    padding:80px 0;
}
.contact-form-box h2{
    color:#ffffff;
    margin-bottom:10px;
}

.contact-form-box p{
    color:#e5e7eb;
    margin-bottom:25px;
}

.contact-form-box select{
    width:100%;
    padding:16px 18px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.16);
    background:#ffffff;
    color:#111827;
    margin-bottom:16px;
    font-size:15px;
}
.single-post-hero{
    padding:140px 0 100px;
}

.beinto-article{
    max-width:950px;
    margin:0 auto;
    background:#ffffff;
    border-radius:32px;
    padding:60px;
    box-shadow:0 30px 80px rgba(0,0,0,.15);
}

.beinto-article h1{
    font-size:46px;
    line-height:1.15;
    color:#111827;
    margin:20px 0;
}

.article-meta{
    color:#6b7280;
    margin-bottom:30px;
    font-weight:600;
}

.article-featured-image img{
    width:100%;
    border-radius:24px;
    margin:25px 0 40px;
}

.article-content{
    color:#1f2937;
    font-size:18px;
    line-height:1.85;
}

.article-content h2{
    color:#111827;
    font-size:32px;
    margin-top:45px;
}

.article-content p{
    margin-bottom:22px;
}

.article-content ul,
.article-content ol{
    padding-left:25px;
    margin:25px 0;
}

.article-content li{
    margin-bottom:12px;
}

.article-content a{
    color:#ff3d7a;
    font-weight:800;
}

.article-cta{
    margin-top:55px;
    padding:40px;
    border-radius:28px;
    background:linear-gradient(135deg,#140021,#ff2f78);
    color:#fff;
    text-align:center;
}

.article-cta h2{
    color:#fff;
    margin-bottom:15px;
}

.article-cta p{
    color:#f3f4f6;
    margin-bottom:25px;
}

@media(max-width:768px){
    .single-post-hero{
        padding:100px 0 70px;
    }

    .beinto-article{
        padding:30px 22px;
        border-radius:24px;
    }

    .beinto-article h1{
        font-size:32px;
    }

    .article-content{
        font-size:16px;
    }

    .article-content h2{
        font-size:25px;
    }
}
/* BLOG ARCHIVE */

.blog-archive-hero{
    padding:140px 0 100px;
}

.blog-archive-hero .hero-text{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.blog-card{
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-6px);
}

.blog-card-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.blog-card-content{
    padding:28px;
}

.blog-date{
    display:block;
    color:#ff3d7a;
    font-size:13px;
    font-weight:800;
    margin-bottom:12px;
}

.blog-card h2{
    font-size:24px;
    line-height:1.25;
    margin-bottom:14px;
}

.blog-card h2 a{
    color:#111827;
    text-decoration:none;
}

.blog-card p{
    color:#4b5563;
    line-height:1.65;
}

.read-more{
    color:#ff3d7a;
    font-weight:800;
    text-decoration:none;
}

.blog-pagination{
    grid-column:1/-1;
    text-align:center;
    margin-top:40px;
}

@media(max-width:768px){
    .blog-archive-hero{
        padding:110px 0 70px;
    }

    .blog-card-content{
        padding:22px;
    }
}
.blog-category-filter{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin:0 0 45px;
}

.category-filter-link{
    background:#ffffff;
    color:#111827;
    padding:12px 22px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.category-filter-link:hover{
    background:#ff3d7a;
    color:#ffffff;
}
.blog-category-filter{
    position:relative;
    z-index:20;
}

.blog-category-filter a,
.category-filter-link{
    position:relative;
    z-index:25;
    pointer-events:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:768px){
    .blog-category-filter{
        display:flex;
        flex-wrap:nowrap;
        overflow-x:auto;
        justify-content:flex-start;
        gap:10px;
        padding:10px 5px 18px;
        margin-bottom:30px;
        -webkit-overflow-scrolling:touch;
    }

    .category-filter-link{
        flex:0 0 auto;
        white-space:nowrap;
        padding:11px 18px;
        font-size:14px;
    }
}
