@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* =========================================================
   BONBON KIDS — Custom Theme CSS
   Palette promo: Ivory · Cream · Terracotta · Charcoal
   Font: Inter (body) + Cormorant Garamond (headings)
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* ─────────────────────────────────────────────────────────
   1. BASE
   ───────────────────────────────────────────────────────── */

body {
    font-family: "Inter", sans-serif !important;
    background-color: #ffffff;
    color: #5a5a5a;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    color: #3D3D3D !important;
}
a {
    color: #3D3D3D;
    transition: color 0.2s ease;
}
a:hover {
    color: #8B7E78;
}

/* ─────────────────────────────────────────────────────────
   2. CSS VARIABLES
   ───────────────────────────────────────────────────────── */

:root {
    --primary-color: #3D3D3D;
    --secondary-color: #E5C6C6;
    --primary-color-rgb: 74, 63, 58;
    --tp-theme-primary: #3D3D3D;
    --tp-theme-secondary: #E5C6C6;
    --footer-background-color: #2a2a2a;
    --footer-text-color: #9a9a9a;
    --footer-title-color: #ffffff;
    --footer-link-color: #9a9a9a;
    --footer-link-hover-color: #ffffff;
    --footer-border-color: #3a3a3a;
    --header-menu-text-hover-color: #3D3D3D;
    --header-main-text-hover-color: #3D3D3D;
    --header-sticky-background-color: #ffffff;
    --header-sticky-text-color: #3D3D3D;
    --header-sticky-text-hover-color: #3D3D3D;
    --tp-yellow-3: #f59e0b;
    --tp-pink-2: #E5C6C6;
    --tp-green-1: #8B7E78;
    --tp-orange-1: #E5C6C6;
    --tp-blue-1: #3D3D3D;
    --tp-grey-1: #F9F4EF;
    --tp-grey-2: #F3EDE7;
    --tp-heading-primary: #3D3D3D;
    --tp-text-body: #7A7268;
    /* Override variabili font del padre — custom.css caricato DOPO theme.css → vince */
    --tp-ff-heading:  'Cormorant Garamond', Georgia, serif;
    --cursive-font:   'Cormorant Garamond', Georgia, serif;
}

/* ─────────────────────────────────────────────────────────
   3. HEADER TOP BAR
   ───────────────────────────────────────────────────────── */

.tp-header-top,
.tp-header-top-2 {
    background-color: #fff8f0 !important;
    border-bottom: 1px solid #f3f4f6 !important;
}
.tp-header-top *,
.tp-header-top-2 * {
    color: #7a7a7a !important;
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
}
.tp-header-top a:hover,
.tp-header-top-2 a:hover {
    color: #3D3D3D !important;
}

.tp-header-lang-content,
.tp-header-currency-content,
.tp-header-setting-content {
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
}
.tp-header-lang-content a,
.tp-header-currency-content a,
.tp-header-setting-content a {
    color: #5a5a5a !important;
}
.tp-header-lang-content a:hover,
.tp-header-currency-content a:hover,
.tp-header-setting-content a:hover {
    color: #3D3D3D !important;
    background-color: rgba(74, 63, 58, 0.06) !important;
}

/* ─────────────────────────────────────────────────────────
   4. HEADER MAIN
   ───────────────────────────────────────────────────────── */

.tp-header-area,
.tp-header-main,
.tp-header-bottom,
.tp-header-bottom-2,
.tp-header-bottom-3 {
    background-color: #ffffff !important;
}
.tp-header-bottom-2,
.tp-header-bottom-3 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

.logo a {
    font-family: "Inter", sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #3D3D3D !important;
    letter-spacing: -0.5px !important;
}

.tp-header-action-btn {
    color: #5a5a5a !important;
}
.tp-header-action-btn:hover {
    color: #3D3D3D !important;
}
.tp-header-action-badge {
    background-color: #e53e3e !important;
    color: #ffffff !important;
}

/* ─────────────────────────────────────────────────────────
   5. STICKY — header segue lo scroll con transizione fluida
   ───────────────────────────────────────────────────────── */

/* <header> funge da spacer: quando #header-sticky diventa position:fixed,
   <header> mantiene l'altezza e impedisce il content-shift ("zoom" hero) */
header {
    min-height: 70px;
}
@media (max-width: 1199px) {
    header { min-height: 60px; }
}
@media (max-width: 767px) {
    header { min-height: 56px; }
}

#header-sticky-2.header-sticky-2,
.header-sticky {
    background-color: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Override parent: sostituisce fadeInDown con transizione fluida translateY.
   Quando .header-sticky è attivo (position:fixed dal padre), l'header è
   nascosto per default (-100%). Solo su scroll-up il JS aggiunge
   .pm-header-visible per mostrarlo. Così non c'è flash al primo scroll. */
.tp-header-sticky.header-sticky {
    animation: none !important;
    transform: translateY(-100%);
    transition: none; /* hide istantaneo, nessuno "scattino" */
}
/* Scroll up → header scivola giù, visibile (CON transition fluida) */
.tp-header-sticky.header-sticky.pm-header-visible {
    transform: translateY(0) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
/* Stato pre-scroll (no .header-sticky): posizione normale nel flusso */
.tp-header-sticky:not(.header-sticky) {
    transform: translateY(0);
}
.pm-header-main {
    transition: box-shadow 0.3s ease;
}

/* ─────────────────────────────────────────────────────────
   6. NAVIGAZIONE
   ───────────────────────────────────────────────────────── */

.main-menu ul li > a,
.tp-main-menu-content ul li > a {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #3D3D3D !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
}
.main-menu ul li > a:hover,
.main-menu ul li.active > a {
    color: #3D3D3D !important;
}

.tp-submenu {
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-top: 2px solid #3D3D3D !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 0 8px 8px !important;
}
.tp-submenu li > a {
    color: #5a5a5a !important;
}
.tp-submenu li > a:hover {
    color: #3D3D3D !important;
}

.tp-category-menu-btn {
    background-color: #3D3D3D !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    text-transform: none !important;
}
.tp-category-menu-btn:hover {
    background-color: #2D2D2D !important;
}

/* ─────────────────────────────────────────────────────────
   7. SEARCH
   ───────────────────────────────────────────────────────── */

.tp-header-search-wrapper {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    background-color: #f9fafb !important;
}
.tp-header-search-wrapper:focus-within {
    border-color: #3D3D3D !important;
    background-color: #ffffff !important;
}
.tp-header-search-btn {
    background-color: #3D3D3D !important;
    color: #ffffff !important;
    border-radius: 0 6px 6px 0 !important;
}
.tp-header-search-btn:hover {
    background-color: #2D2D2D !important;
}

/* ─────────────────────────────────────────────────────────
   8. BOTTONI
   ───────────────────────────────────────────────────────── */

.tp-btn {
    background-color: #3d3d3d !important;
    color: #ffffff !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 12px 28px !important;
    transition: all 0.3s ease !important;
}
.tp-btn:hover {
    background-color: #3D3D3D !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 63, 58, 0.3) !important;
}

.tp-btn-2,
.tp-btn-blue {
    background-color: #3D3D3D !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    text-transform: none !important;
    border: none !important;
}
.tp-btn-2:hover,
.tp-btn-blue:hover {
    background-color: #2D2D2D !important;
}

.tp-btn-border {
    background-color: transparent !important;
    color: #3d3d3d !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 50px !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    text-transform: none !important;
}
.tp-btn-border:hover {
    background-color: #3D3D3D !important;
    border-color: #3D3D3D !important;
    color: #ffffff !important;
}

.tp-btn-white {
    background-color: #ffffff !important;
    color: #3d3d3d !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}
.tp-btn-white:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-2px);
}

.tp-link-btn,
.tp-link-btn-2,
.tp-link-btn-3 {
    color: #3D3D3D !important;
    font-family: "Inter", sans-serif !important;
}

.tp-product-list-add-to-cart-btn {
    background-color: rgba(74, 63, 58, 0.12) !important;
    color: #3D3D3D !important;
    border: 1.5px solid rgba(74, 63, 58, 0.4) !important;
    border-radius: 8px !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    text-transform: none !important;
}
.tp-product-list-add-to-cart-btn:hover {
    background-color: #3D3D3D !important;
    color: #ffffff !important;
    border-color: #3D3D3D !important;
}

/* ─────────────────────────────────────────────────────────
   9. PRODUCT CARDS
   ───────────────────────────────────────────────────────── */

.tp-product-item {
    background-color: #ffffff !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
}
.tp-product-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
    border-color: #e5e7eb !important;
    transform: translateY(-4px);
}
.tp-product-thumb img {
    transition: transform 0.4s ease;
}
.tp-product-item:hover .tp-product-thumb img {
    transform: scale(1.05);
}

.tp-product-category a {
    color: #9a9a9a !important;
    font-size: 11px !important;
    text-transform: none !important;
}
.tp-product-title a {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #5a5a5a !important;
}
.tp-product-title a:hover {
    color: #3D3D3D !important;
}
.tp-product-price span {
    color: #3D3D3D !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 700 !important;
}
.tp-product-price span.old-price {
    color: #9a9a9a !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}
.tp-product-rating-icon span {
    color: #f59e0b !important;
}

.tp-product-badge span {
    border-radius: 20px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    background-color: #E5C6C6 !important;
    color: #ffffff !important;
}
.tp-product-badge span.product-trending {
    background-color: #8B7E78 !important;
}
.tp-product-badge span.product-sale {
    background-color: #3D3D3D !important;
}
.tp-product-badge span.product-offer {
    background-color: #f97316 !important;
}
.tp-product-badge span.product-out-stock {
    background-color: #9a9a9a !important;
}

.tp-product-action-btn {
    border-radius: 50% !important;
}
.tp-product-action-btn:hover {
    background-color: #3D3D3D !important;
    border-color: #3D3D3D !important;
    color: #ffffff !important;
}

/* ─────────────────────────────────────────────────────────
   10. SECTION TITLES — pm-section-title (child override)
   ───────────────────────────────────────────────────────── */

.pm-section-title-wrapper {
    text-align: center;
}

/* Subtitle sopra il titolo: etichetta colorata uppercase */
.pm-section-title-pre {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3D3D3D;
    background: rgba(74, 63, 58, 0.07);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* Titolo principale: Cormorant Garamond */
.pm-section-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 400;
    color: #3D3D3D;
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin: 0;
}

/* Decorazione: linee + icona centrale */
.pm-section-title-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.pm-section-title-deco__line {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3D3D3D);
}

.pm-section-title-deco__line:last-child {
    background: linear-gradient(90deg, #3D3D3D, transparent);
}

.pm-section-title-deco__icon {
    font-size: 10px;
    color: #3D3D3D;
    line-height: 1;
}

/* ─────────────────────────────────────────────────────────
   SECTION TITLES — classi native shofy (fallback)
   ───────────────────────────────────────────────────────── */

.tp-section-title-pre,
.tp-section-title-pre-3,
.tp-section-title-pre-4,
.tp-section-title-pre-5 {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #3D3D3D !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
}

.tp-section-title,
.tp-section-title-2,
.tp-section-title-3,
.tp-section-title-4,
.tp-section-title-5 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    letter-spacing: -0.5px !important;
}

.tp-section-title mark,
.tp-section-title-2 mark,
.tp-section-title-3 mark {
    background: none !important;
    color: #3D3D3D !important;
}

/* ─────────────────────────────────────────────────────────
   11. VARIE
   ───────────────────────────────────────────────────────── */

.grey-bg,
.tp-grey-bg {
    background-color: #fff8f0 !important;
}
.theme-bg {
    background-color: #3D3D3D !important;
}

.tp-product-tab .nav-link,
.tp-tab-menu .nav-link {
    font-family: "Inter", sans-serif !important;
    text-transform: none !important;
    color: #9a9a9a !important;
    border-bottom: 2px solid transparent !important;
}
.tp-product-tab .nav-link.active,
.tp-tab-menu .nav-link.active {
    color: #3d3d3d !important;
    background: none !important;
    border-bottom-color: #3D3D3D !important;
}
.tp-tab-line {
    background-color: #3D3D3D !important;
}

.cartmini__wrapper {
    background-color: #ffffff !important;
}
.cartmini__top-title h4 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    color: #3d3d3d !important;
}
.cartmini__price span {
    color: #3D3D3D !important;
    font-weight: 700 !important;
}

.breadcrumb__area {
    background-color: #f9fafb !important;
    border-bottom: 1px solid #f3f4f6 !important;
}
.breadcrumb__title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    color: #3d3d3d !important;
}
.breadcrumb__list a:hover {
    color: #3D3D3D !important;
}
.breadcrumb__list span:last-child {
    color: #3D3D3D !important;
}

.tp-swiper-scrollbar {
    background-color: #e5e7eb !important;
}
.tp-swiper-scrollbar-drag {
    background-color: #3D3D3D !important;
}
.tp-back-to-top,
#back-to-top {
    background-color: #3D3D3D !important;
    color: #ffffff !important;
    border-radius: 50% !important;
}

.tp-features-item {
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
}
.tp-features-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.tp-features-icon i,
.tp-features-icon svg {
    color: #3D3D3D !important;
}
.tp-features-title {
    font-family: "Inter", sans-serif !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #3D3D3D !important;
    box-shadow: 0 0 0 3px rgba(74, 63, 58, 0.12) !important;
}

.tp-pagination ul li a:hover,
.tp-pagination ul li.active a {
    background-color: #3D3D3D !important;
    border-color: #3D3D3D !important;
    color: #ffffff !important;
}

#tp-bottom-menu-sticky {
    background-color: #ffffff !important;
    border-top: 1px solid #f3f4f6 !important;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06) !important;
}
.tp-mobile-item-btn {
    color: #5a5a5a !important;
    font-family: "Inter", sans-serif !important;
}
.tp-mobile-item-btn:hover,
.tp-mobile-item-btn.active {
    color: #3D3D3D !important;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background-color: #3D3D3D;
    border-radius: 3px;
}

/* ─────────────────────────────────────────────────────────
   12. HERO SLIDER — overlay dal basso stile BonBon
   ───────────────────────────────────────────────────────── */

/* ── 12a. Hero STATICO (single slide, no OwlCarousel) ── */
.pm-hero-static {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.pm-hero-slide--static {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 92vh;
    max-height: 900px;
    background-size: cover;
    background-position: center center;
    background-color: #1a1a1a;
}
@media (max-width: 991px) {
    .pm-hero-slide--static { min-height: 500px; }
}
@media (max-width: 767px) {
    .pm-hero-slide--static {
        /* Mobile: viewport completo, senza salti tra browser  */
        min-height: 100vh;          /* fallback browser vecchi */
        min-height: 100svh;         /* sempre visibile (URL bar mostrata) */
        min-height: 100dvh;         /* dinamico: si adatta a URL bar (Chrome/Safari/FF moderni) */
        max-height: none;
    }
}

/* ── 12b. Hero CAROUSEL (multi-slide, OwlCarousel) ── */

/* Sfondo scuro per eliminare flash bianco tra slide */
.pm-hero-area,
.pm-hero-area .owl-carousel,
.pm-hero-area .owl-stage-outer,
.pm-hero-area .owl-stage {
    background-color: #1a1a1a !important;
}

.pm-hero-area .tp-slider-height {
    min-height: 92vh !important;
    max-height: 900px;
    display: flex !important;
    align-items: flex-end !important;
}
.pm-hero-area .tp-slider-item {
    background-size: cover !important;
    background-position: center center !important;
}

.pm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 20, 20, 0.82) 0%,
        rgba(20, 20, 20, 0.35) 55%,
        rgba(20, 20, 20, 0.08) 100%
    );
    z-index: 1;
}
.pm-hero-area .container {
    position: relative;
    z-index: 2;
}
.pm-hero-content {
    padding-bottom: 72px;
    padding-top: 40px;
}

.pm-hero-subtitle {
    display: inline-block;
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    margin-bottom: 20px;
}

.pm-hero-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 64px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.05 !important;
    letter-spacing: -2px !important;
    margin: 0 0 24px !important;
    max-width: 700px;
}

.pm-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.pm-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff !important;
    color: #3d3d3d !important;
    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 16px 36px !important;
    border-radius: 50px !important;
    border: none !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.pm-hero-btn-primary:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
    color: #3d3d3d !important;
}

.pm-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35) !important;
    padding: 0 0 2px !important;
    transition: all 0.2s ease;
    background: transparent !important;
    border-radius: 0 !important;
}
.pm-hero-btn-secondary:hover {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.tp-slider-button-prev,
.tp-slider-button-next {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    transition: opacity 0.3s ease;
}
.pm-hero-area .owl-nav button.disabled {
    opacity: 0 !important;
    pointer-events: none;
}

@media (max-width: 991px) {
    .pm-hero-area .tp-slider-height {
        min-height: 500px !important;
    }
    .pm-hero-title {
        font-size: 42px !important;
    }
}
@media (max-width: 767px) {
    .pm-hero-area .tp-slider-height {
        /* Mobile: viewport completo, senza salti tra browser */
        min-height: 100vh !important;     /* fallback */
        min-height: 100svh !important;    /* small viewport */
        min-height: 100dvh !important;    /* dynamic viewport (preferito) */
        max-height: none !important;
    }
    .pm-hero-title {
        font-size: 32px !important;
    }
    .pm-hero-content {
        padding-bottom: 48px;
        padding-top: 24px;
    }
}

/* ─────────────────────────────────────────────────────────
   13. BANNER PROMO
   ───────────────────────────────────────────────────────── */

.pm-promo-banner {
    background: linear-gradient(135deg, #3D3D3D, #2D2D2D) !important;
    color: #ffffff !important;
    text-align: center;
    padding: 10px 20px;
    font-family: "Inter", sans-serif !important;
    font-size: 13px;
    font-weight: 500;
}
.pm-promo-banner a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────
   14. LABEL COMUNE
   ───────────────────────────────────────────────────────── */

.pm-label {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #3D3D3D !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin: 0 0 12px !important;
    display: block;
}

/* ─────────────────────────────────────────────────────────
   15. TRUST BAR
   ───────────────────────────────────────────────────────── */

.pm-trust-bar {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    padding: 18px 0;
}
.pm-trust-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.pm-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pm-trust-bar__item span {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #7a7a7a !important;
}
@media (max-width: 600px) {
    .pm-trust-bar__inner {
        gap: 14px;
    }
}

/* ─────────────────────────────────────────────────────────
   16. VALUES SECTION
   ───────────────────────────────────────────────────────── */

.pm-values-section {
    padding: 64px 0;
    background: #fff8f0 !important;
}
.pm-values-header {
    text-align: center;
    margin-bottom: 48px;
}
.pm-values-section .pm-values-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 0 12px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}
.pm-values-section .pm-values-desc {
    font-size: 16px !important;
    color: #7a7a7a !important;
    max-width: 520px;
    margin: 0 auto !important;
    line-height: 1.7 !important;
    font-family: "Inter", sans-serif !important;
}
.pm-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pm-value-card {
    background: #ffffff !important;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.pm-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb;
}
.pm-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.pm-value-card .pm-value-title {
    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #3d3d3d !important;
    margin: 0 0 8px !important;
}
.pm-value-card .pm-value-desc {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    color: #7a7a7a !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}
@media (max-width: 900px) {
    .pm-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .pm-values-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────
   17. PROCESS SECTION
   ───────────────────────────────────────────────────────── */

.pm-process-section {
    padding: 64px 0;
    background: #fff8f0 !important;
}
.pm-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 48px;
}
.pm-process-connector {
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, #3D3D3D, #8B7E78, #E5C6C6, #f59e0b);
    opacity: 0.3;
    z-index: 0;
}
.pm-process-step {
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.pm-process-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.pm-process-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    aspect-ratio: 4/3;
}
.pm-process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pm-process-step:hover .pm-process-img img {
    transform: scale(1.05);
}
.pm-process-step .pm-process-title {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 0 6px !important;
}
.pm-process-step .pm-process-desc {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    color: #7a7a7a !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}
@media (max-width: 768px) {
    .pm-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }
    .pm-process-connector {
        display: none;
    }
    .pm-process-step {
        padding: 0 8px;
    }
}

/* ─────────────────────────────────────────────────────────
   18. MATERIALS SECTION
   ───────────────────────────────────────────────────────── */

.pm-materials-section {
    padding: 0;
    background: #ffffff !important;
    overflow: hidden;
}
.pm-materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.pm-materials-img {
    position: relative;
    overflow: hidden;
}
.pm-materials-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pm-materials-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, #ffffff 100%);
}
.pm-materials-content {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pm-materials-content .pm-materials-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 0 20px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}
.pm-materials-content .pm-materials-desc {
    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    color: #7a7a7a !important;
    line-height: 1.75 !important;
    margin: 0 0 32px !important;
}
.pm-certs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pm-cert-item {
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 3px solid #8B7E78;
}
.pm-cert-item .pm-cert-title {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 0 4px !important;
}
.pm-cert-item .pm-cert-desc {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    color: #7a7a7a !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}
.pm-materials-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 14px;
    font-weight: 600;
    color: #3D3D3D !important;
    text-decoration: none;
    font-family: "Inter", sans-serif !important;
    transition: gap 0.2s ease;
}
.pm-materials-link:hover {
    gap: 12px;
    color: #2D2D2D !important;
}
@media (max-width: 768px) {
    .pm-materials-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .pm-materials-img {
        height: 240px;
    }
    .pm-materials-img-overlay {
        background: linear-gradient(to bottom, transparent 50%, #ffffff 100%);
    }
    .pm-materials-content {
        padding: 32px 20px;
    }
    .pm-certs-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────
   19. CTA SECTION
   ───────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────
   19. CTA SECTION — stile showroom promo
   ───────────────────────────────────────────────────────── */
.pm-cta-section {
    position: relative;
    overflow: hidden;
    min-height: clamp(460px, 68vh, 700px);
    display: flex;
    align-items: center;
}
.pm-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
}
.pm-cta-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(74,63,58,.88) 0%, rgba(74,63,58,.62) 58%, rgba(74,63,58,.34) 100%);
}
.pm-cta-body {
    position: relative;
    z-index: 2;
    padding: clamp(56px, 7vw, 110px) var(--bs-gutter-x, 24px);
    max-width: 680px;
    margin-left: max(calc((100vw - 1200px) / 2), 24px);
}
.pm-cta-section .pm-cta-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(42px, 6.8vw, 78px) !important;
    font-weight: 300 !important;
    line-height: .98 !important;
    color: #ffffff !important;
    letter-spacing: -.03em !important;
    margin: 0 0 22px !important;
}
.pm-cta-section .pm-cta-title em {
    font-style: italic;
}
.pm-cta-section .pm-cta-desc {
    font-family: "Inter", sans-serif !important;
    font-size: 17px !important;
    line-height: 1.76 !important;
    color: rgba(255,255,255,.68) !important;
    margin: 0 0 42px !important;
    max-width: 460px;
}
.pm-cta-section .pm-cta-desc strong {
    color: rgba(255,255,255,.88);
    font-weight: 600;
}
.pm-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
/* Bottone WhatsApp */
.pm-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    text-decoration: none;
    min-height: 54px;
    padding: 16px 34px;
    border: 1px solid rgba(255,255,255,.32);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: border-color .3s, transform .3s;
    white-space: nowrap;
}
.pm-cta-btn-wa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #E5C6C6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
    z-index: -1;
}
.pm-cta-btn-wa:hover {
    border-color: #E5C6C6;
    color: #3D3D3D !important;
    transform: translateY(-2px);
}
.pm-cta-btn-wa:hover::before {
    transform: scaleX(1);
}
/* Link Instagram */
.pm-cta-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.45) !important;
    text-decoration: none;
    transition: color .3s;
}
.pm-cta-ig:hover {
    color: rgba(255,255,255,.85) !important;
}
@media (max-width: 768px) {
    .pm-cta-body {
        margin-left: 20px;
        margin-right: 20px;
        max-width: 100%;
    }
    .pm-cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .pm-cta-btn-wa {
        width: 100%;
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────────────────
   20. FOOTER BONBON DARK
   ───────────────────────────────────────────────────────── */

/* ── FOOTER BONBON — classi pm-footer-* dedicate, nessun conflitto ── */

.pm-footer {
    background: #2a2a2a;
    color: #9a9a9a;
    margin-top: 0;
}

.pm-footer-top {
    background: #2a2a2a;
    border-bottom: 1px solid #3a3a3a;
}

.pm-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

/* Brand */
.pm-footer-logo {
    margin: 0 0 16px;
    display: block;
}
.pm-footer-logo img,
.pm-footer-logo svg {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}
.pm-footer-brand-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 280px;
}
.pm-footer-certif {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pm-footer-certif span {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #9a9a9a;
    border: 1px solid #3d3d3d;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Social buttons nel footer */
.pm-footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.pm-footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}
.pm-footer-social-btn--wa {
    color: #6DBF9E;
    border: 1px solid rgba(109, 191, 158, 0.4);
    background: rgba(109, 191, 158, 0.1);
}
.pm-footer-social-btn--wa:hover {
    background: #6DBF9E;
    color: #ffffff;
    border-color: #6DBF9E;
}
.pm-footer-social-btn--ig {
    color: #F4A0B5;
    border: 1px solid rgba(244, 160, 181, 0.4);
    background: rgba(244, 160, 181, 0.1);
}
.pm-footer-social-btn--ig:hover {
    background: #F4A0B5;
    color: #2a2a2a;
    border-color: #F4A0B5;
}

/* Colonne */
.pm-footer-col-title {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
    display: block;
}
/* Versione bottone per accordion — stessa estetica */
button.pm-footer-col-title {
    background: none;
    border: none;
    cursor: default;
    padding: 0;
    width: 100%;
    text-align: left;
}
/* Nascondi la freccia su desktop */
.pm-footer-acc-chevron {
    display: none;
}
.pm-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pm-footer-links li {
    margin-bottom: 10px;
}
.pm-footer-links a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #9a9a9a;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}
.pm-footer-links a:hover {
    color: #ffffff;
}

/* Newsletter */
.pm-footer-newsletter-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.6;
    margin: 0 0 16px;
}
.pm-footer-gdpr {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #6a6a6a;
    line-height: 1.5;
    margin: 10px 0 0;
}
.pm-footer-gdpr a {
    color: #9a9a9a;
    text-decoration: none;
}
.pm-footer-gdpr a:hover {
    color: #ffffff;
}

/* Bottom */
.pm-footer-bottom {
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
}
.pm-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.pm-footer-copy {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #6a6a6a;
    margin: 0;
}
.pm-footer-legal {
    display: flex;
    gap: 20px;
}
.pm-footer-legal a {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #6a6a6a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.pm-footer-legal a:hover {
    color: #9a9a9a;
}

/* Newsletter form dentro il footer dark (escludi form contatti) */
.pm-footer .newsletter-form input[type="email"],
.pm-footer input[type="email"]:not(.pm-fcontact-field) {
    background: #484848 !important;
    border: 1px solid #585858 !important;
    color: #ffffff !important;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    outline: none;
    font-family: "Inter", sans-serif;
}
.pm-footer .newsletter-form input::placeholder,
.pm-footer input:not(.pm-fcontact-field)::placeholder {
    color: #6a6a6a !important;
}
.pm-footer .newsletter-form input:focus,
.pm-footer input[type="email"]:not(.pm-fcontact-field):focus {
    border-color: #3D3D3D !important;
    box-shadow: none !important;
}

.pm-footer .newsletter-form button,
.pm-footer button[type="submit"]:not(.pm-fcontact-send) {
    background: #3D3D3D !important;
    color: #ffffff !important;
    border: none !important;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    width: 100%;
    margin-top: 8px;
    transition: background 0.2s ease;
}
.pm-footer .newsletter-form button:hover,
.pm-footer button[type="submit"]:not(.pm-fcontact-send):hover {
    background: #2D2D2D !important;
}

/* Responsive */
@media (max-width: 900px) {
    .pm-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 600px) {
    .pm-footer-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        padding: 32px 20px 24px;
        gap: 28px 20px;
    }

    /* Brand: occupa tutta la prima riga */
    .pm-footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
    }
    .pm-footer-logo { margin: 0; }
    .pm-footer-brand-desc { display: none; } /* nascosta su mobile */
    .pm-footer-certif { display: none; }     /* nascosta su mobile */
    .pm-footer-social {
        margin-top: 0;
        width: 100%;
    }

    /* Accordion mobile: le colonne link occupano tutta la larghezza, impilate */
    .pm-footer-col--accordion {
        grid-column: 1 / -1;
        border-bottom: 1px solid #3a3a3a;
        padding-bottom: 4px;
    }
    /* Il titolo diventa bottone con freccia */
    .pm-footer-acc-toggle {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4px 0 16px;
        color: #ffffff;
        text-align: left;
    }
    /* Mostra freccia su mobile */
    .pm-footer-acc-chevron {
        display: block;
        color: #9a9a9a;
        flex-shrink: 0;
        transition: transform 0.25s ease;
    }
    .pm-footer-acc-toggle[aria-expanded="true"] .pm-footer-acc-chevron {
        transform: rotate(180deg);
    }
    /* Il body (lista link) è collassabile */
    .pm-footer-acc-body {
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    /* Riduci margine inferiore degli item nell'accordion */
    .pm-footer-col--accordion .pm-footer-links li {
        margin-bottom: 12px;
    }

    /* Newsletter: tutta la terza riga */
    .pm-footer-col--newsletter {
        grid-column: 1 / -1;
    }

    /* Contact form: tutta la larghezza su mobile */
    .pm-footer-col--contact {
        grid-column: 1 / -1;
    }

    .pm-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 8px;
    }
    .pm-footer-legal {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
}

/* ── FOOTER CONTACT FORM ─────────────────────────────────── */
.pm-footer-contact-desc {
    font-size: 13px;
    color: #8a8a8a;
    margin: 0 0 16px;
    line-height: 1.5;
}
.pm-footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pm-footer-contact-input {
    background: #3a3a3a !important;
    border: 1px solid #4a4a4a !important;
    color: #ffffff !important;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-family: "Inter", sans-serif !important;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}
.pm-footer-contact-input::placeholder {
    color: #6a6a6a !important;
    font-style: normal !important;
}
.pm-footer-contact-input:focus {
    border-color: #F4A0B5 !important;
    box-shadow: none !important;
}
.pm-footer-contact-textarea {
    resize: vertical;
    min-height: 72px;
}
.pm-footer-contact-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent !important;
    color: #F4A0B5 !important;
    border: 1px solid rgba(244, 160, 181, 0.5) !important;
    padding: 10px 18px !important;
    border-radius: 50px !important;
    font-size: 13px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    width: 100%;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
    margin-top: 4px;
    box-shadow: none !important;
}
.pm-footer-contact-btn:hover {
    background: #F4A0B5 !important;
    color: #2a2a2a !important;
    border-color: #F4A0B5 !important;
}
.pm-footer-contact-feedback {
    margin-top: 8px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    line-height: 1.4;
}
.pm-footer-contact-feedback--ok {
    background: rgba(244, 160, 181, 0.15);
    color: #F4A0B5;
    border: 1px solid rgba(244, 160, 181, 0.3);
}
.pm-footer-contact-feedback--error {
    background: rgba(244, 160, 181, 0.15);
    color: #F4A0B5;
    border: 1px solid rgba(244, 160, 181, 0.3);
}

/* ── FOOTER PAYMENTS ─────────────────────────────────────── */
.pm-footer-payments {
    display: flex;
    align-items: center;
}
.pm-footer-payments img {
    max-height: 28px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}
.pm-footer-payments img:hover {
    opacity: 1;
}

/* Bottom inner layout a 3 colonne con payments al centro */
.pm-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 600px) {
    .pm-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ─────────────────────────────────────────────────────────
   HEADER STYLE 5 — mega menu con hamburger
   ───────────────────────────────────────────────────────── */

/* Container principale */
.tp-header-5 {
    background-color: #ffffff !important;
    border-bottom: 1px solid #f3f4f6;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

/* Hamburger button */
.tp-hamburger-btn-2 span {
    background-color: #3d3d3d !important;
    display: block;
    height: 2px;
    width: 22px;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.tp-hamburger-btn-2:hover span {
    background-color: #3D3D3D !important;
}

/* Search style 5 */
.tp-header-search-5 {
    width: 100%;
}
.tp-header-search-input-box-5 {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.tp-header-search-input-box-5:focus-within {
    border-color: #3D3D3D !important;
    background: #ffffff;
}
.tp-header-search-input-5 {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 12px;
}
.tp-header-search-input-5 input {
    width: 100%;
    border: none !important;
    background: transparent !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px;
    color: #3d3d3d;
    outline: none;
    box-shadow: none !important;
}
.tp-header-search-input-5 input::placeholder {
    color: #9a9a9a !important;
    font-style: normal !important;
}
.tp-header-search-icon-5 {
    color: #9a9a9a;
    display: flex;
    align-items: center;
    margin-right: 8px;
}
.tp-header-search-input-box-5 button[type="submit"] {
    background-color: #3D3D3D !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 20px;
    font-family: "Inter", sans-serif !important;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}
.tp-header-search-input-box-5 button[type="submit"]:hover {
    background-color: #2D2D2D !important;
}

/* Login area style 5 */
.tp-header-login-5 a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #3d3d3d;
    transition: color 0.2s ease;
}
.tp-header-login-5 a:hover {
    color: #3D3D3D;
}
.tp-header-login-icon-5 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(74, 63, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D3D3D;
    flex-shrink: 0;
}
.tp-header-login-content-5 p {
    margin: 0;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
}
.tp-header-login-content-5 span {
    font-size: 11px !important;
    color: #9a9a9a !important;
    font-weight: 400 !important;
    display: block;
}
.tp-header-login-content-5 p > :last-child {
    font-size: 13px;
    font-weight: 600;
    color: #3d3d3d;
}

/* Action icons style 5 */
.tp-header-action-5 {
    gap: 8px;
}
.tp-header-action-item-5 {
    position: relative;
    display: flex;
    align-items: center;
}
.tp-header-action-item-5 a,
.tp-header-action-item-5 button {
    color: #5a5a5a !important;
    background: transparent !important;
    border: none !important;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    position: relative;
    cursor: pointer;
}
.tp-header-action-item-5 a:hover,
.tp-header-action-item-5 button:hover {
    color: #3D3D3D !important;
}

/* Badge style 5 */
.tp-header-action-badge-5 {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e53e3e !important;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
}

/* Side menu categorie (dropdown hamburger) */
.tp-side-menu-5 {
    background: #ffffff;
    border-right: 1px solid #f3f4f6;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
}

/* Sticky header style 5 */
.tp-header-sticky.header-sticky .tp-header-5 {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

/* ── CATEGORIE DROPDOWN (hamburger side menu) ── */
.tp-category-menu-content ul li a {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    color: #5a5a5a !important;
    font-weight: 400 !important;
}
.tp-category-menu-content ul li a:hover {
    color: #3D3D3D !important;
}

/* ─────────────────────────────────────────────────────────
   HEADER 5 — Override colori bianchi del padre
   Il padre assume sfondo scuro, noi usiamo sfondo bianco
   ───────────────────────────────────────────────────────── */

/* Menu links — padre li mette bianchi, noi li mettiamo scuri */
.tp-header-5 .main-menu > nav > ul > li > a {
    color: #3d3d3d !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
}
.tp-header-5 .main-menu > nav > ul > li > a:hover,
.tp-header-5 .main-menu > nav > ul > li:hover > a {
    color: #3D3D3D !important;
}
.tp-header-5 .main-menu > nav > ul > li.has-dropdown > a svg {
    color: #3d3d3d !important;
}
.tp-header-5 .main-menu > nav > ul > li > a::before {
    background-color: #3D3D3D !important;
}

/* Badge carrello/wishlist — padre lo mette bianco con bordo */
.tp-header-action-badge-5 {
    background-color: #e53e3e !important;
    color: #ffffff !important;
    border: none !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 18px !important;
    top: -6px !important;
    right: -6px !important;
    letter-spacing: 0 !important;
}

/* Icone SVG nella parte destra dell'header */
.tp-header-right-5 svg,
.tp-header-action-item-5 svg {
    color: #5a5a5a !important;
    stroke: currentColor;
}
.tp-header-action-item-5 a:hover svg,
.tp-header-action-item-5 button:hover svg {
    color: #3D3D3D !important;
}

/* Login icon */
.tp-header-login-icon-5 svg {
    color: #3D3D3D !important;
}

/* Login testi */
.tp-header-login-content-5 p span {
    color: #9a9a9a !important;
}
.tp-header-login-content-5 p {
    color: #3d3d3d !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* ─────────────────────────────────────────────────────────
   HEADER 5 — Layout ottimizzato
   - Search più corto su desktop
   - Icone wishlist/carrello più vicine
   ───────────────────────────────────────────────────────── */

/* Search box più corto — max-width contenuto */
.tp-header-search-5 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Riduce il padding interno del search */
.tp-header-search-input-box-5 {
    min-height: 42px;
}
.tp-header-search-input-5 {
    padding: 0 10px;
}
.tp-header-search-input-5 input {
    font-size: 13px !important;
}
.tp-header-search-input-box-5 button[type="submit"] {
    padding: 10px 16px !important;
    font-size: 12px !important;
}

/* Icone destra — gap più stretto */
.tp-header-action-5 {
    gap: 4px !important;
    margin-left: 12px;
}

/* Ogni icona più compatta */
.tp-header-action-item-5 {
    margin-right: 0 !important;
}
.tp-header-action-item-5:not(:last-child) {
    margin-right: 2px !important;
}

/* Pulsanti icona con padding ridotto */
.tp-header-action-item-5 a,
.tp-header-action-item-5 button {
    padding: 6px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    transition:
        background 0.2s ease,
        color 0.2s ease !important;
}
.tp-header-action-item-5 a:hover,
.tp-header-action-item-5 button:hover {
    background: rgba(74, 63, 58, 0.08) !important;
    color: #3D3D3D !important;
}

/* Login: gap più stretto col resto */
.tp-header-login-5 {
    margin-right: 12px;
}

/* ─────────────────────────────────────────────────────────
   HEADER PM — layout custom 3 colonne
   Logo | Menu centrato | Search + Icone
   ───────────────────────────────────────────────────────── */

/* Header top: deve stare sopra il main header per i dropdown lingua/valuta */
.tp-header-top-2 {
    position: relative;
    z-index: 300 !important;
}

/* Dropdown lingua e valuta nell'header top */
.tp-header-top-menu-item ul {
    z-index: 301 !important;
}

.pm-header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    z-index: 200;
}

/* Header sticky: z-index alto per stare sopra hero/slider */
#header-sticky {
    z-index: 200;
}

/* Riga principale: full-width con hamburger a sx e icone a dx */
.pm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    padding: 0 24px;
    width: 100%;
}

/* ── SINISTRA: hamburger + logo ── */
.pm-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    z-index: 1;
}

/* ── CENTRO: logo centrato in assoluto ── */
.pm-header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: auto;
}

/* ── SINISTRA: hamburger + logo ── */
.pm-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    z-index: 1;
}

/* Hamburger — stile promo BonBon Kids (3 righe di larghezza diversa) */
.pm-burger {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    padding: 0;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.pm-burger span {
    display: block;
    height: 1.5px;
    background: #3d3d3d;
    transition: all .36s ease;
}
.pm-burger span:nth-child(1) { width: 26px; }
.pm-burger span:nth-child(2) { width: 18px; }
.pm-burger span:nth-child(3) { width: 22px; }
.pm-burger:hover span { background: #F4A0B5; }

/* ── CENTRO: menu centrato in assoluto ── */
.pm-header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Nav list orizzontale */
.pm-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Link di navigazione */
.pm-nav-link {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #3d3d3d !important;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-decoration: none;
    display: block;
}

.pm-nav-link:hover,
.pm-nav-item:hover > .pm-nav-link,
.pm-nav-link.active {
    color: #3D3D3D !important;
    background: rgba(74, 63, 58, 0.06);
}

/* ── DESTRA: search + icone ── */
.pm-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    z-index: 1;
}

/* Search bar */
.pm-header-search {
    align-items: center;
}

.pm-search-box {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
    height: 40px;
    width: 220px;
    transition: all 0.2s ease;
}

.pm-search-box:focus-within {
    border-color: #3D3D3D;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 63, 58, 0.1);
    width: 260px;
}

.pm-search-icon {
    display: flex;
    align-items: center;
    padding: 0 10px 0 14px;
    color: #9a9a9a;
    flex-shrink: 0;
}

.pm-search-box input[type="text"],
.pm-search-box input[type="search"] {
    flex: 1;
    border: none !important;
    background: transparent !important;
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    color: #3d3d3d !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    height: 100%;
    min-width: 0;
}

.pm-search-box input::placeholder {
    color: #9a9a9a !important;
    font-style: normal !important;
}

.pm-search-btn {
    background: #3D3D3D !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0 16px !important;
    height: 100%;
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0 50px 50px 0 !important;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.pm-search-btn:hover {
    background: #2D2D2D !important;
}

/* Icone azioni */
.pm-header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

.pm-header-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #5a5a5a;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.pm-header-icon-btn:hover {
    background: rgba(74, 63, 58, 0.08);
    color: #3D3D3D;
}

.pm-header-icon-btn svg {
    display: block;
    flex-shrink: 0;
}

/* Badge su icone */
.pm-header-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e53e3e;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* Nasconde il badge quando il valore è 0 */
.pm-header-badge:empty,
[data-bb-value] .pm-header-badge[data-bb-value="0"] {
    display: none;
}
.pm-header-badge[data-count="0"],
.pm-header-badge:has(+ *:empty) {
    display: none;
}

/* Wishlist nell'offcanvas */
.pm-offcanvas-wishlist {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}
.pm-offcanvas-wishlist-link {
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #5a5a5a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.pm-offcanvas-wishlist-link:hover {
    color: #F4A0B5;
}
.pm-offcanvas-wishlist-badge {
    margin-left: 6px;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* Bottone WhatsApp nel menu offcanvas */
.pm-offcanvas-wa-btn {
    display: inline-flex !important;
    align-items: center;
    background: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
    border-radius: 50px !important;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.15s ease;
}
.pm-offcanvas-wa-btn:hover {
    background: #1fba59 !important;
    border-color: #1fba59 !important;
    color: #fff !important;
    transform: scale(1.03);
}

/* Sticky */
.tp-header-sticky.header-sticky .pm-header-main {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* Responsive: tablet / mobile */
@media (max-width: 1199px) {
    .pm-header-inner {
        height: 60px;
        gap: 12px;
    }
    .pm-search-box {
        width: 180px;
    }
    .pm-search-box:focus-within {
        width: 200px;
    }
}

@media (max-width: 767px) {
    /* Layout: hamburger a sinistra, icone a destra, logo assoluto al centro */
    .pm-header-inner {
        height: 56px;
        padding: 0 4px 0 12px;
    }
    /* Logo: mantieni position:absolute per centratura perfetta indipendente da left/right */
    .pm-header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex: none;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
    .pm-header-right {
        gap: 0;
        flex-shrink: 0;
        margin-left: auto;
    }
    .pm-header-actions {
        gap: 4px;
    }
    /* Wishlist e Account nascosti su mobile: accessibili via hamburger */
    .pm-wishlist-icon,
    .pm-account-icon {
        display: none !important;
    }
    .pm-header-icon-btn {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
    .pm-header-icon-btn svg {
        width: 17px;
        height: 17px;
    }
    .pm-lang-currency-wrap {
        display: none !important;
    }
}

/* =========================================================
   PAGINE: About, Contact, Progetti
   ========================================================= */

/* ═══════════════════════════════════════════════════════════
   PAB — CHI SIAMO  (stile editoriale Louboutin-inspired)
   prefisso: pab-
   ═══════════════════════════════════════════════════════════ */

/* Reveal animations */
.pab-reveal,
.pab-reveal-left,
.pab-reveal-right,
.pab-reveal-scale {
    transition: opacity .85s cubic-bezier(0.22,1,0.36,1), transform .85s cubic-bezier(0.22,1,0.36,1);
}
.pab-reveal      { opacity:0; transform:translateY(32px); }
.pab-reveal-left { opacity:0; transform:translateX(-32px); }
.pab-reveal-right{ opacity:0; transform:translateX(32px);  }
.pab-reveal-scale{ opacity:0; transform:scale(.96);        }
.pab-reveal.pab-vis,
.pab-reveal-left.pab-vis,
.pab-reveal-right.pab-vis,
.pab-reveal-scale.pab-vis { opacity:1; transform:none; }

/* Shared tokens */
.pab-eyebrow {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
}
.pab-eyebrow--dark { color: #7a7a7a; }
.pab-section-num {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .2em;
    color: rgba(255,255,255,.35);
    margin-bottom: 8px;
}
.pab-section-num--dark { color: #c8beb6; }

/* ① HERO */
.pab-hero {
    position: relative;
    height: 92vh;
    min-height: 560px;
    max-height: 820px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #1a1a1a;
}
/* Variante compatta per pagina Shop */
.pab-hero--shop {
    height: 40vh;
    min-height: 280px;
    max-height: 420px;
    align-items: center;
}
.pab-hero--shop .pab-hero-body {
    padding: 0 60px 0;
}
.pab-hero--shop .pab-hero-h {
    font-size: clamp(36px, 5vw, 64px) !important;
    margin: 0 0 12px !important;
}
.pab-hero-img {
    position: absolute;
    inset: 0;
}
.pab-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.pab-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(20,15,10,.35) 50%,
        rgba(20,15,10,.82) 100%
    );
}
.pab-hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px 80px;
}
.pab-hero-h {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(52px, 7.5vw, 100px) !important;
    font-weight: 300 !important;
    color: #ffffff !important;
    line-height: 1.05 !important;
    letter-spacing: -.02em !important;
    margin: 0 0 20px !important;
}
.pab-hero-h em { font-style: italic; color: rgba(255,255,255,.75); }
.pab-hero-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    margin: 0;
}
.pab-hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 60px;
    z-index: 2;
    opacity: .55;
    animation: pab-scroll-bob 2s ease-in-out infinite;
}
@keyframes pab-scroll-bob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* ② INTRO 2 COLONNE */
.pab-intro {
    background: #F9F4EF;
    padding: 100px 0;
}
.pab-intro-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.pab-intro-quote {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    color: #3d3d3d;
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}
.pab-intro-quote::before {
    content: '\201C';
    display: block;
    font-size: 72px;
    line-height: .6;
    color: #F4A0B5;
    opacity: .35;
    margin-bottom: 8px;
    font-style: normal;
}
.pab-intro-p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    margin: 0 0 18px;
}
.pab-intro-p strong { color: #3d3d3d; font-weight: 600; }
.pab-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F4A0B5;
    text-decoration: none;
    margin-top: 8px;
    transition: gap .25s ease;
}
.pab-link-arrow:hover { gap: 14px; color: #d4809a; }

/* ③ STORIA — full-bleed image + testo */
.pab-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(480px, 65vh, 760px);
    background: #F3EDE7;
}
.pab-story-img {
    position: relative;
    overflow: hidden;
}
.pab-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(0.22,1,0.36,1);
    display: block;
}
.pab-story:hover .pab-story-img img { transform: scale(1.04); }
.pab-story-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, #F3EDE7 100%);
}
.pab-story-body {
    padding: clamp(40px, 7vw, 90px) clamp(32px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pab-story-h {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(28px, 3.8vw, 46px) !important;
    font-weight: 400 !important;
    color: #3d3d3d !important;
    line-height: 1.18 !important;
    letter-spacing: -.01em !important;
    margin: 12px 0 28px !important;
}
.pab-story-h em { font-style: italic; color: #F4A0B5; }
.pab-story-p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.82;
    color: #5a5a5a;
    margin: 0 0 16px;
    max-width: 480px;
}
.pab-story-p strong { color: #3d3d3d; font-weight: 600; }
.pab-story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}
.pab-story-tags span {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    padding: 6px 14px;
    border: 1px solid rgba(244,160,181,.25);
    border-radius: 50px;
    color: #F4A0B5;
    letter-spacing: .04em;
    background: rgba(244,160,181,.06);
}

/* ④ PULL QUOTE */
.pab-pullquote {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}
.pab-pullquote-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}
.pab-pullquote-line {
    width: 48px;
    height: 1px;
    background: #F4A0B5;
    opacity: .4;
    margin: 0 auto 36px;
}
.pab-pullquote-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: #3d3d3d;
    margin: 0 0 28px;
    border: none;
    padding: 0;
}
.pab-pullquote-attr {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #7a7a7a;
    margin: 0 0 36px;
}

/* ⑤ VALORI */
.pab-values {
    background: #F9F4EF;
    padding: 100px 0;
}
.pab-values-head {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    margin-bottom: 64px;
}
.pab-values-h {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(32px, 4.5vw, 56px) !important;
    font-weight: 300 !important;
    color: #3d3d3d !important;
    line-height: 1.12 !important;
    margin: 12px 0 0 !important;
}
.pab-values-h em { font-style: italic; }
.pab-values-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(244,160,181,.15);
}
.pab-value {
    padding: 48px 40px 48px 0;
    border-right: 1px solid rgba(244,160,181,.12);
}
.pab-value:first-child { padding-left: 0; }
.pab-value:last-child  { border-right: none; padding-right: 0; }
.pab-value-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.pab-value-num {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: #F4A0B5;
    opacity: .6;
    min-width: 20px;
}
.pab-value-rule {
    flex: 1;
    height: 1px;
    background: rgba(244,160,181,.2);
}
.pab-value-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #3d3d3d !important;
    margin: 0 0 14px !important;
    letter-spacing: -.02em !important;
}
.pab-value-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #7a7a7a;
    margin: 0;
}

/* ⑥ GALLERY */
.pab-gallery {
    background: #1a1a1a;
    padding: 0;
    overflow: hidden;
}
.pab-gallery-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    height: clamp(420px, 60vh, 700px);
}
.pab-gallery-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
}
.pab-gallery-item {
    position: relative;
    overflow: hidden;
}
.pab-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
    display: block;
    filter: brightness(.88);
}
.pab-gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}
.pab-gallery-cap {
    position: absolute;
    bottom: 20px;
    left: 24px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    z-index: 2;
    transition: color .3s;
}
.pab-gallery-item:hover .pab-gallery-cap { color: rgba(255,255,255,.95); }
.pab-gallery-col .pab-gallery-item {
    border-top: 1px solid rgba(255,255,255,.06);
}

/* ── RESPONSIVE PAB ── */
@media (max-width: 991px) {
    .pab-hero-body { padding: 0 32px 60px; }
    .pab-hero-scroll { right: 32px; }
    .pab-intro-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
    .pab-story { grid-template-columns: 1fr; min-height: auto; }
    .pab-story-img { min-height: 55vw; max-height: 380px; }
    .pab-story-img-ov { background: linear-gradient(180deg, transparent 50%, #F3EDE7 100%); }
    .pab-story-body { padding: 40px 32px 60px; }
    .pab-story-p { max-width: 100%; }
    .pab-values-head { padding: 0 32px; }
    .pab-values-grid { grid-template-columns: 1fr; padding: 0 32px; }
    .pab-value { padding: 36px 0; border-right: none; border-bottom: 1px solid rgba(244,160,181,.1); }
    .pab-value:last-child { border-bottom: none; }
    .pab-intro { padding: 72px 0; }
    .pab-pullquote { padding: 72px 0; }
    .pab-values { padding: 72px 0; }
    .pab-gallery-grid { grid-template-columns: 1fr; height: auto; }
    .pab-gallery-col { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
    .pab-gallery-item { height: 240px; }
    .pab-gallery-item--tall { height: 320px; }
    .pab-pullquote-inner { padding: 0 24px; }
}
@media (max-width: 640px) {
    /* Hero generico */
    .pab-hero-h { font-size: clamp(34px, 9vw, 46px) !important; }
    /* Hero compatto (Chi Siamo, Shop): ridotto ulteriormente */
    .pab-hero--shop .pab-hero-h { font-size: clamp(26px, 7vw, 34px) !important; margin: 0 0 10px !important; }
    /* Subtitle: meno aggressivo su mobile — lowercase, letterspacing ridotto, righe corte */
    .pab-hero-sub {
        font-size: 11px;
        letter-spacing: .07em;
        text-transform: none;
        max-width: 280px;
        color: rgba(255,255,255,.6);
    }
    /* Scroll indicator: inutile su touch, nascosto */
    .pab-hero-scroll { display: none; }
    .pab-hero-body { padding: 0 20px 40px; }
    .pab-intro-inner,
    .pab-values-head,
    .pab-values-grid { padding: 0 20px; }
    .pab-story-body { padding: 32px 20px 48px; }
    .pab-gallery-col { grid-template-columns: 1fr; }
    .pab-gallery-item, .pab-gallery-item--tall { height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
    .pab-reveal,.pab-reveal-left,.pab-reveal-right,.pab-reveal-scale {
        transition: none; opacity:1; transform:none;
    }
}

/* =====================================================================
   PCO — PAGINA CONTATTI (redesign)
   ===================================================================== */

/* ── CARDS CONTATTO (3 colonne) ── */
.pco-cards {
    position: relative;
    z-index: 3;
    margin-top: -48px;
    padding: 0 24px;
}
.pco-cards-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pco-card {
    background: #fff;
    border: 1px solid #ece6de;
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.pco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.pco-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.pco-card-icon--blue  { background: rgba(244,160,181,.10); color: #F4A0B5; }
.pco-card-icon--green { background: rgba(109,191,158,.12); color: #6DBF9E; }
.pco-card-icon--pink  { background: rgba(244,160,181,.10); color: #F4A0B5; }
.pco-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0;
}
.pco-card-value {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #F4A0B5;
    white-space: nowrap;
    text-decoration: none;
}
.pco-card-value--tel {
    /* Numero telefono: non si spezza mai, font si adatta su schermi piccoli */
    font-size: clamp(.78rem, 3.4vw, .95rem);
    letter-spacing: .01em;
    transition: color .2s ease;
}
.pco-card-value--tel:hover { color: #d4809a; }
a.pco-card:hover .pco-card-value { color: #d4809a; }
.pco-card--soon { opacity: .85; pointer-events: none; }
.pco-card-soon-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(244,160,181,.15);
    color: #d4788e;
    border: 1px solid rgba(244,160,181,.4);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.pco-card-note {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    color: #999;
}
.pco-card-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 14px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.pco-card-wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    color: #fff;
}

/* ── MAIN: form + sidebar ── */
.pco-main {
    padding: 72px 24px 96px;
    background: #faf8f4;
}
.pco-main-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

/* Form column */
.pco-form-head {
    margin-bottom: 28px;
}
.pco-form-h {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 0 0 10px;
}
.pco-form-h em { color: #F4A0B5; font-style: italic; }
.pco-form-desc {
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    color: #7a7a7a;
    line-height: 1.7;
    margin: 0;
}
.pco-form-card {
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 32px rgba(0,0,0,.04);
}

/* Fallback custom form */
.pco-form-box { display: flex; flex-direction: column; gap: 18px; }
.pco-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pco-form-group { display: flex; flex-direction: column; gap: 6px; }
.pco-label {
    font-family: 'Inter', sans-serif;
    font-size: .73rem;
    font-weight: 600;
    color: #5a5a5a;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.pco-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e8e0d5;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    color: #2a2a2a;
    background: #faf9f6;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    box-sizing: border-box;
}
.pco-input:focus {
    border-color: #F4A0B5;
    box-shadow: 0 0 0 3px rgba(244,160,181,.12);
    background: #fff;
}
.pco-submit-btn {
    width: 100%;
    padding: 15px 36px;
    background: #F4A0B5;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.pco-submit-btn:hover { background: #d4809a; transform: translateY(-1px); }
.pco-gdpr {
    font-family: 'Inter', sans-serif;
    font-size: .74rem;
    color: #aaa;
    line-height: 1.6;
    margin: 16px 0 0;
}
.pco-gdpr a { color: #F4A0B5; text-decoration: underline; }

/* Contact plugin overrides */
.pco-form-card .tp-contact-area { padding: 0 !important; }
.pco-form-card .tp-contact-area.pb-100,
.pco-form-card [class*="pb-"] { padding-bottom: 0 !important; }
.pco-form-card .tp-contact-area .container { padding: 0 !important; width: 100% !important; max-width: 100% !important; }
.pco-form-card .tp-contact-inner { display: block !important; }
.pco-form-card .tp-contact-inner .row { display: block !important; margin: 0 !important; }
.pco-form-card .tp-contact-inner [class*="col-"] { width: 100% !important; max-width: 100% !important; padding: 0 !important; flex: unset !important; }
.pco-form-card .tp-contact-wrapper { padding: 0 !important; box-shadow: none !important; border: none !important; background: transparent !important; }
.pco-form-card .tp-contact-sidebar,
.pco-form-card .tp-contact-info-wrapper { display: none !important; }
.pco-form-card .form-group { margin-bottom: 0; }
.pco-form-card .contact-form,
.pco-form-card .tp-contact-form form { display: flex; flex-direction: column; gap: 18px; }
/* Fix intl-tel-input: il padding generale sovrascriverebbe il padding calcolato dalla libreria.
   La regola più specifica (0,3,0) permette all'input telefono di avere il padding corretto. */
.pco-form-card .form-control.js-phone-number-mask { padding-left: 110px !important; }
.pco-form-card .form-control,
.pco-form-card input[type="text"],
.pco-form-card input[type="email"],
.pco-form-card input[type="tel"],
.pco-form-card textarea,
.pco-form-card select {
    padding: 13px 16px !important;
    border: 1.5px solid #e8e0d5 !important;
    border-radius: 10px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: .92rem !important;
    color: #2a2a2a !important;
    background: #faf9f6 !important;
    box-shadow: none !important;
    outline: none;
    transition: border-color .2s, box-shadow .2s !important;
}
.pco-form-card .form-control:focus,
.pco-form-card input[type="text"]:focus,
.pco-form-card input[type="email"]:focus,
.pco-form-card input[type="tel"]:focus,
.pco-form-card textarea:focus {
    border-color: #F4A0B5 !important;
    box-shadow: 0 0 0 3px rgba(244,160,181,.12) !important;
    background: #fff !important;
}
.pco-form-card label,
.pco-form-card .control-label {
    font-family: 'Inter', sans-serif !important;
    font-size: .73rem !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    letter-spacing: .07em !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
    display: block;
}
.pco-form-card .tp-contact-title { display: none !important; }
.pco-form-card button[type="submit"],
.pco-form-card input[type="submit"],
.pco-form-card .btn-primary {
    width: 100% !important;
    padding: 15px 36px !important;
    background: #F4A0B5 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: .9rem !important;
    font-weight: 600 !important;
    letter-spacing: .04em !important;
    box-shadow: none !important;
    transition: background .2s, transform .2s !important;
    cursor: pointer;
}
.pco-form-card button[type="submit"]:hover,
.pco-form-card .btn-primary:hover {
    background: #d4809a !important;
    transform: translateY(-1px);
}

/* ── SIDEBAR ── */
.pco-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 100px;
}
.pco-sb-block {
    background: #fff;
    border: 1px solid #ece6de;
    border-radius: 16px;
    padding: 28px 24px;
}
.pco-sb-title {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #3d3d3d;
    margin: 0 0 16px;
}
.pco-sb-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pco-sb-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    color: #5a5a5a;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0ebe4;
}
.pco-sb-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.pco-sb-hours li span:last-child { font-weight: 600; color: #3d3d3d; }

/* Quote sidebar */
.pco-sb-quote {
    position: relative;
    background: #fff;
    border: 1px solid #ece6de;
    border-radius: 16px;
    padding: 28px 24px 24px;
}
.pco-sb-quote-mark {
    position: absolute;
    top: 16px;
    left: 20px;
}
.pco-sb-quote-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: #3d3d3d;
    margin: 12px 0 12px;
}
.pco-sb-quote-attr {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #999;
    margin: 0;
}

/* Quick links sidebar */
.pco-sb-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pco-sb-links a {
    display: flex;
    align-items: center;
    padding: 11px 0;
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    color: #5a5a5a;
    text-decoration: none;
    border-bottom: 1px solid #f0ebe4;
    transition: color .2s, padding-left .2s;
}
.pco-sb-links a:last-child { border-bottom: none; }
.pco-sb-links a:hover { color: #F4A0B5; padding-left: 4px; }

/* WhatsApp sidebar CTA */
.pco-sb-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.pco-sb-wa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    color: #fff;
}

/* ── RESPONSIVE CONTACT ── */
@media (max-width: 900px) {
    .pco-cards-wrap { grid-template-columns: 1fr; gap: 14px; }
    .pco-cards { margin-top: -36px; }
    .pco-card {
        /* Grid: icona a sinistra, contenuto impilato a destra */
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 16px;
        row-gap: 4px;
        padding: 24px 20px;
        text-align: left;
        align-items: start;
    }
    .pco-card-icon {
        grid-row: 1 / span 10;   /* occupa tutta l'altezza della colonna sinistra */
        margin-bottom: 0;
        flex-shrink: 0;
        align-self: start;
    }
    .pco-card > *:not(.pco-card-icon) {
        grid-column: 2;          /* tutto il resto va in colonna 2, impilato */
    }
    .pco-card-title { font-size: 1.05rem; }
    .pco-card-wa-btn { justify-self: start; margin-top: 10px; }
    .pco-main-wrap { grid-template-columns: 1fr; gap: 32px; }
    .pco-sidebar { position: static; }
}
@media (max-width: 640px) {
    .pco-main { padding: 40px 16px 56px; }
    .pco-form-card { padding: 24px 18px; }
    .pco-form-row { grid-template-columns: 1fr; }
    .pco-form-h { font-size: 1.5rem; }
    .pco-cards { padding: 0 16px; margin-top: -28px; }
    .pco-card { padding: 20px 16px; gap: 12px; }
    .pco-card-icon { width: 44px; height: 44px; border-radius: 12px; }
    .pco-card-value { font-size: .82rem; }
    .pco-card-note { font-size: .72rem; }
    .pco-card-soon-badge { font-size: .65rem; padding: 3px 10px; }
    .pco-sb-block { padding: 22px 18px; }
    .pco-sb-hours li { font-size: .8rem; }
    .pco-sb-wa { padding: 14px 20px; font-size: .82rem; }
}

/* ── HERO ABOUT / CONTACT ── */
.pm-about-hero {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #fff8f0 0%,
        #ffffff 50%,
        rgba(244, 160, 181, 0.08) 100%
    );
    overflow: hidden;
}
.pm-about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.pm-about-hero-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(36px, 4vw, 52px) !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    line-height: 1.1 !important;
    margin: 16px 0 24px !important;
    letter-spacing: -1px !important;
}
.pm-about-hero-desc {
    font-size: 17px;
    color: #7a7a7a;
    line-height: 1.75;
    margin: 0 0 32px;
    font-family: "Inter", sans-serif;
}
.pm-about-btn-primary {
    display: inline-flex;
    align-items: center;
    background: #3D3D3D;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(74, 63, 58, 0.3);
    font-family: "Inter", sans-serif;
}
.pm-about-btn-primary:hover {
    background: #2D2D2D;
    transform: translateY(-2px);
}

.pm-about-hero-img-wrap {
    position: relative;
}
.pm-about-hero-img {
    aspect-ratio: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}
.pm-about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pm-about-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    pointer-events: none;
}
.pm-about-blob--pink {
    width: 80px;
    height: 80px;
    top: -16px;
    right: -16px;
    background: rgba(244, 160, 181, 0.3);
}
.pm-about-blob--blue {
    width: 110px;
    height: 110px;
    bottom: -16px;
    left: -16px;
    background: rgba(74, 63, 58, 0.25);
}

/* ── SECTION HEADER ── */
.pm-about-section-head {
    text-align: center;
    margin-bottom: 52px;
}
.pm-about-section-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(26px, 3.5vw, 36px) !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 0 12px !important;
    letter-spacing: -0.5px !important;
}
.pm-about-section-desc {
    font-size: 16px;
    color: #7a7a7a;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
}

/* ── VALUES ABOUT ── */
.pm-about-values {
    padding: 72px 0;
    background: #ffffff;
}
.pm-about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pm-about-value-card {
    background: #fff8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.pm-about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.pm-about-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.pm-about-value-title {
    font-family: "Inter", sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 0 10px !important;
}
.pm-about-value-desc {
    font-size: 14px;
    color: #7a7a7a;
    line-height: 1.65;
    margin: 0;
    font-family: "Inter", sans-serif;
}

/* ── STORIA ── */
.pm-about-story {
    padding: 80px 0 72px;
    background: #fff8f0;
}
.pm-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.pm-about-story-p {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 1.75;
    margin: 0 0 16px;
    font-family: "Inter", sans-serif;
}
.pm-about-story-p strong {
    color: #3d3d3d;
    font-weight: 600;
}
.pm-about-story-imgwrap {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    box-shadow: 0 12px 48px rgba(244,160,181,0.12);
}
.pm-about-story-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.pm-about-story-imgwrap:hover img {
    transform: scale(1.03);
}
.pm-about-section-title em {
    font-style: italic;
    color: #F4A0B5;
}
.pm-about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pm-about-stat {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.pm-about-stat-num {
    font-family: "Inter", sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 4px !important;
    letter-spacing: -1px !important;
}
.pm-about-stat-label {
    font-size: 13px;
    color: #7a7a7a;
    margin: 0;
    font-family: "Inter", sans-serif;
}

/* ── CONTACT CHANNELS ── */
.pm-contact-channels {
    padding: 72px 0;
    background: #ffffff;
}
.pm-contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pm-contact-channel-card {
    background: #fff8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.pm-contact-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.pm-contact-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.pm-contact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #7a7a7a;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

/* ── CONTACT FORM SECTION ── */
.pm-contact-form-section {
    padding: 72px 0;
    background: #fff8f0;
}
.pm-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch; /* stessa altezza per entrambe le colonne */
}

/* Colonna sinistra: card bianca uguale alla destra */
.pm-contact-form-left {
    background: #ffffff;
    border: 1px solid #f0f1f3;
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* I link utili si spingono in fondo */
.pm-contact-links {
    margin-top: auto !important;
}
.pm-contact-links {
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    margin-top: 32px;
}
.pm-contact-links-title {
    font-size: 11px;
    font-weight: 700;
    color: #3d3d3d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 16px;
    font-family: "Inter", sans-serif;
}
.pm-contact-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #3d3d3d;
    font-family: "Inter", sans-serif;
}
.pm-contact-link-item:hover {
    border-color: #3D3D3D;
    transform: translateX(4px);
    color: #3d3d3d;
}
.pm-contact-form-box {
    background: white;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.pm-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.pm-form-group {
    margin-bottom: 16px;
}
.pm-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #3d3d3d;
    display: block;
    margin-bottom: 6px;
    font-family: "Inter", sans-serif;
}
.pm-form-input {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px;
    color: #3d3d3d;
    background: #ffffff;
    box-sizing: border-box;
}
.pm-form-input:focus {
    border-color: #3D3D3D !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 63, 58, 0.12) !important;
}
.pm-contact-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3D3D3D, #2D2D2D);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(74, 63, 58, 0.3);
    font-family: "Inter", sans-serif;
    letter-spacing: 0.3px;
}
.pm-contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 63, 58, 0.4);
}
.pm-contact-gdpr-note {
    font-size: 11px;
    color: #9a9a9a;
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
}
.pm-contact-gdpr-note a {
    color: #3D3D3D;
    text-decoration: none;
}

/* ── PROGETTI HERO ── */
.pm-progetti-hero {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #fff8f0 0%,
        #ffffff 50%,
        rgba(244, 160, 181, 0.06) 100%
    );
    overflow: hidden;
}

/* Grid 2 colonne: testo | immagine */
.pm-progetti-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pm-progetti-hero-text {
}

/* Colonna immagine */
.pm-progetti-hero-img {
    position: relative;
}

.pm-progetti-hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 24px 60px rgba(74, 63, 58, 0.15);
}

.pm-progetti-hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pm-progetti-hero-img:hover .pm-progetti-hero-img-main img {
    transform: scale(1.03);
}

/* Foto piccola flottante in basso a sinistra */
.pm-progetti-hero-img-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 160px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pm-progetti-hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge "48+ progetti" */
.pm-progetti-hero-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.pm-progetti-hero-badge-num {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #3D3D3D;
    line-height: 1;
}

.pm-progetti-hero-badge-label {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #7a7a7a;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
    .pm-progetti-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pm-progetti-hero-img {
        max-width: 500px;
        margin: 0 auto;
    }
    .pm-progetti-hero-img-main {
        aspect-ratio: 16/9;
    }
}
.pm-progetti-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(36px, 5vw, 58px) !important;
    font-weight: 800 !important;
    color: #3d3d3d !important;
    margin: 16px 0 20px !important;
    letter-spacing: -1.5px !important;
    line-height: 1.08 !important;
}
.pm-progetti-desc {
    font-size: 17px;
    color: #7a7a7a;
    line-height: 1.75;
    margin: 0 0 36px;
    max-width: 520px;
    font-family: "Inter", sans-serif;
}
.pm-progetti-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.pm-progetti-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3D3D3D;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(74, 63, 58, 0.3);
    font-family: "Inter", sans-serif;
}
.pm-progetti-btn-primary:hover {
    background: #2D2D2D;
    transform: translateY(-2px);
    color: #ffffff !important;
}
.pm-progetti-btn-ghost {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 1px;
    transition: all 0.2s;
    font-family: "Inter", sans-serif;
}
.pm-progetti-btn-ghost:hover {
    color: #3d3d3d;
    border-color: #3d3d3d;
}

/* ── STATS BAR ── */
.pm-progetti-stats {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}
.pm-stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.pm-stat-item {
    padding: 28px 40px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    flex: 1;
    min-width: 140px;
}
.pm-stat-item:last-child {
    border-right: none;
}
.pm-stat-num {
    font-family: "Inter", sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 4px !important;
    letter-spacing: -1px !important;
}
.pm-stat-label {
    font-size: 13px;
    color: #7a7a7a;
    margin: 0;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

/* ── GALLERY ── */
.pm-progetti-gallery {
    padding: 72px 0;
    background: #fafafa;
}

/* ── PROCESS PROGETTI ── */
.pm-progetti-process {
    padding: 72px 0;
    background: #ffffff;
}
.pm-progetti-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pm-progetti-step {
    background: #fafafa;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.pm-progetti-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}
.pm-progetti-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.pm-progetti-step-title {
    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 0 8px !important;
}
.pm-progetti-step-desc {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    color: #7a7a7a !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* ── REVIEWS ── */
.pm-progetti-reviews {
    padding: 72px 0;
    background: #fff8f0;
}
.pm-progetti-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pm-review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.pm-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.pm-review-text {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
    font-family: "Inter", sans-serif;
}
.pm-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pm-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    flex-shrink: 0;
}
.pm-review-name {
    font-size: 13px;
    font-weight: 600;
    color: #3d3d3d;
    margin: 0;
    font-family: "Inter", sans-serif;
}
.pm-review-city {
    font-size: 12px;
    color: #9a9a9a;
    margin: 0;
    font-family: "Inter", sans-serif;
}

/* ── PROGETTI CTA SCURO ── */
.pm-progetti-cta {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #3d3d3d 0%, #2a2a2a 100%);
    text-align: center;
}
.pm-progetti-cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.pm-progetti-cta-blob--1 {
    width: 240px;
    height: 240px;
    top: -60px;
    right: -60px;
    background: rgba(74, 63, 58, 0.12);
}
.pm-progetti-cta-blob--2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: 5%;
    background: rgba(244, 160, 181, 0.1);
}
.pm-progetti-cta-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(28px, 4vw, 42px) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 16px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}
.pm-progetti-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 36px;
    line-height: 1.75;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Inter", sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .pm-about-hero-grid,
    .pm-about-story-grid,
    .pm-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pm-about-hero-img-wrap {
        display: none;
    }
    .pm-about-story-imgwrap {
        aspect-ratio: 16/9;
        max-height: 340px;
    }
    .pm-about-values-grid,
    .pm-contact-channels-grid,
    .pm-progetti-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pm-progetti-steps {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .pm-about-values-grid,
    .pm-contact-channels-grid,
    .pm-progetti-reviews-grid {
        grid-template-columns: 1fr;
    }
    .pm-progetti-steps {
        grid-template-columns: 1fr;
    }
    .pm-about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pm-stat-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .pm-contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   AUTH — Login / Registrazione
   ========================================================= */

/* Nascondi immagine banner su mobile e tablet, visibile solo da lg (≥992px) */
@media (max-width: 991px) {
    .auth-card__left {
        display: none !important;
    }
    .auth-card__horizontal .auth-card__right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* =========================================================
   CUSTOMER ACCOUNT — Profilo utente Petit Monde Luxe
   ========================================================= */

.pm-account-page {
    background: #f9fafb;
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px;
}

.pm-account-body {
    max-width: 1200px;
}

/* ── Mobile header ── */
.pm-account-mobile-header {
    background: #ffffff;
    padding: 16px;
    margin-bottom: 0;
}
.pm-account-mobile-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.pm-account-mobile-name {
    font-size: 15px;
    font-weight: 600;
    color: #3d3d3d;
    margin: 0;
    font-family: "Inter", sans-serif;
}
.pm-account-mobile-label {
    font-size: 12px;
    color: #9a9a9a;
    margin: 0;
    font-family: "Inter", sans-serif;
}

/* ── Chip grid nav ── */
.pm-account-chip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.pm-account-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    background: #f8f6f3;
    border: 1.5px solid #ede9e3;
    border-radius: 12px;
    text-decoration: none !important;
    color: #5a5a5a;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    line-height: 1.2;
}
.pm-account-chip:hover {
    background: #fff;
    border-color: #F4A0B5;
    color: #F4A0B5;
}
.pm-account-chip.active {
    background: #F4A0B5;
    border-color: #F4A0B5;
    color: #ffffff;
}
.pm-account-chip.active .pm-account-chip-icon,
.pm-account-chip.active .pm-account-chip-label {
    color: #ffffff;
}
.pm-account-chip--logout {
    color: #c0392b;
    background: #fdf3f2;
    border-color: #f5cbc8;
}
.pm-account-chip--logout:hover {
    background: #fde8e6;
    border-color: #c0392b;
    color: #c0392b;
}
.pm-account-chip-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.pm-account-chip-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Layout principale ── */
.pm-account-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
    padding-top: 24px;
}

/* ── Sidebar ── */
.pm-account-sidebar {
    flex-direction: column;
}

.pm-account-sidebar-inner {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* User info nella sidebar */
.pm-account-sidebar-user {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #f3f4f6;
    background: linear-gradient(135deg, #fff8f0, #ffffff);
}

.pm-account-avatar-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.pm-account-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.pm-account-avatar-sm {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.pm-account-avatar-sm .pm-account-avatar-img {
    width: 36px;
    height: 36px;
}
.pm-account-avatar-online {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.pm-account-sidebar-name {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3d3d3d;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pm-account-sidebar-email {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #9a9a9a;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigazione sidebar */
.pm-account-nav {
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.pm-account-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #5a5a5a;
    text-decoration: none;
    transition: all 0.2s ease;
}
.pm-account-nav-item:hover {
    background: rgba(74, 63, 58, 0.07);
    color: #3D3D3D;
}
.pm-account-nav-item.active {
    background: rgba(74, 63, 58, 0.1);
    color: #3D3D3D;
    font-weight: 600;
}
.pm-account-nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.8;
}
.pm-account-nav-item.active .pm-account-nav-icon {
    opacity: 1;
}

/* Footer sidebar */
.pm-account-sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid #f3f4f6;
}
.pm-account-sidebar-shop-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(74, 63, 58, 0.06);
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #3D3D3D;
    text-decoration: none;
    transition: all 0.2s ease;
}
.pm-account-sidebar-shop-link:hover {
    background: rgba(74, 63, 58, 0.12);
    color: #2D2D2D;
}

/* ── Main content ── */
.pm-account-main {
    min-width: 0;
}

.pm-account-content-header {
    margin-bottom: 20px;
}
.pm-account-content-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 !important;
}

.pm-account-content-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Dashboard overview ── */

/* Welcome card */
.pm-dash-welcome {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.pm-dash-welcome-avatar {
    position: relative;
    flex-shrink: 0;
}
.pm-dash-welcome-change {
    position: absolute;
    bottom: -2px;
    right: -2px;
}
.pm-dash-welcome-change input[type="file"] {
    display: none !important;
}
.pm-dash-welcome-change-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #3D3D3D;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    border: 2px solid white;
    transition: background 0.2s;
}
.pm-dash-welcome-change-btn:hover {
    background: #2D2D2D;
}

.pm-dash-welcome-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 0 6px !important;
}
.pm-dash-welcome-sub {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #7a7a7a;
    margin: 0;
    line-height: 1.6;
}

/* Stats */
.pm-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pm-dash-stat {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #f3f4f6;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
}
.pm-dash-stat:hover {
    border-color: #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.pm-dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pm-dash-stat-num {
    font-family: "Inter", sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #3d3d3d !important;
    margin: 0 0 2px !important;
    letter-spacing: -0.5px !important;
}
.pm-dash-stat-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #9a9a9a;
    margin: 0;
    font-weight: 500;
}

/* Quick actions */
.pm-dash-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pm-dash-action-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.pm-dash-action-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}
.pm-dash-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pm-dash-action-text {
    flex: 1;
    min-width: 0;
}
.pm-dash-action-title {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #3d3d3d !important;
    margin: 0 0 2px !important;
}
.pm-dash-action-sub {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #9a9a9a;
    margin: 0;
}
.pm-dash-action-arrow {
    flex-shrink: 0;
    transition: transform 0.2s;
}
.pm-dash-action-card:hover .pm-dash-action-arrow {
    transform: translateX(4px);
}

/* Empty orders CTA */
.pm-dash-empty-orders {
    background: rgba(74, 63, 58, 0.05);
    border: 1.5px dashed rgba(74, 63, 58, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pm-dash-empty-orders-icon {
    width: 52px;
    height: 52px;
    background: rgba(74, 63, 58, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pm-dash-empty-title {
    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #3d3d3d !important;
    margin: 0 0 4px !important;
}
.pm-dash-empty-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #7a7a7a;
    margin: 0;
}
.pm-dash-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #3D3D3D;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    transition: all 0.2s;
    margin-left: auto;
}
.pm-dash-empty-btn:hover {
    background: #2D2D2D;
    color: #ffffff !important;
}

/* ── Override Bootstrap cards nel profilo ── */
.pm-account-content-body .card {
    border-radius: 14px !important;
    border: 1px solid #f3f4f6 !important;
    box-shadow: none !important;
}
.pm-account-content-body .card-body {
    padding: 20px !important;
}
.pm-account-content-body .btn-primary {
    background-color: #3D3D3D !important;
    border-color: #3D3D3D !important;
    border-radius: 50px !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 8px 20px !important;
}
.pm-account-content-body .btn-primary:hover {
    background-color: #2D2D2D !important;
    border-color: #2D2D2D !important;
}
.pm-account-content-body .btn-success {
    background-color: #8B7E78 !important;
    border-color: #8B7E78 !important;
    border-radius: 50px !important;
}
.pm-account-content-body .btn-warning {
    background-color: #f59e0b !important;
    border-color: #f59e0b !important;
    border-radius: 50px !important;
    color: #fff !important;
}
.pm-account-content-body .table {
    font-family: "Inter", sans-serif !important;
    font-size: 14px;
}
.pm-account-content-body .badge {
    border-radius: 20px !important;
    font-family: "Inter", sans-serif !important;
}
.pm-account-content-body .form-control,
.pm-account-content-body .form-select {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
}
.pm-account-content-body .form-control:focus,
.pm-account-content-body .form-select:focus {
    border-color: #3D3D3D !important;
    box-shadow: 0 0 0 3px rgba(74, 63, 58, 0.12) !important;
}
.pm-account-content-body .nav-link.active {
    color: #3D3D3D !important;
    border-bottom-color: #3D3D3D !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .pm-account-layout {
        grid-template-columns: 1fr;
        padding-top: 0;
    }
    .pm-account-sidebar {
        display: none !important;
    }
    .pm-dash-stats {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .pm-account-page {
        padding: 0 0 60px;
    }
    .pm-dash-stats {
        grid-template-columns: 1fr;
    }
    .pm-dash-welcome {
        flex-direction: column;
        text-align: center;
    }
    .pm-dash-empty-orders {
        flex-direction: column;
        text-align: center;
    }
    .pm-dash-empty-btn {
        margin: 0 auto;
    }
}

/* =========================================================
   BB-CUSTOMER — Override classi plugin ecommerce
   Per le sottopagine che non hanno ancora override blade
   ========================================================= */

/* Contenitore principale */
.bb-customer-page {
    background: #f9fafb !important;
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px;
}

/* Sidebar */
.bb-customer-sidebar-wrapper {
    background: #ffffff !important;
    border-radius: 16px;
    border: 1px solid #f3f4f6 !important;
    overflow: hidden;
}
.bb-customer-sidebar-heading {
    background: linear-gradient(135deg, #fff8f0, #ffffff) !important;
    border-bottom: 1px solid #f3f4f6 !important;
}
.bb-customer-sidebar-heading .name {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #3d3d3d !important;
}
.bb-customer-sidebar-heading .email {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    color: #9a9a9a !important;
}

/* Nav pills nella sidebar */
.bb-customer-navigation .nav-pills .nav-link {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #5a5a5a !important;
    border-radius: 10px !important;
    padding: 10px 12px !important;
    transition: all 0.2s ease !important;
}
.bb-customer-navigation .nav-pills .nav-link:hover {
    background: rgba(74, 63, 58, 0.07) !important;
    color: #3D3D3D !important;
}
.bb-customer-navigation .nav-pills .nav-link.active {
    background: rgba(74, 63, 58, 0.1) !important;
    color: #3D3D3D !important;
    font-weight: 600 !important;
}

/* Content header */
.bb-profile-header {
    padding: 20px 24px !important;
    border-bottom: 1px solid #f3f4f6 !important;
    background: #ffffff !important;
    border-radius: 16px 16px 0 0;
}
.bb-profile-header-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
}

/* Profile main area */
.bb-profile-main {
    padding: 24px !important;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    border: 1px solid #f3f4f6;
    border-top: none;
}
.bb-profile-content {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}

/* Override Bootstrap elements nel profilo */
.bb-customer-page .card {
    border-radius: 14px !important;
    border: 1px solid #f3f4f6 !important;
    box-shadow: none !important;
}
.bb-customer-page .btn-primary {
    background-color: #3D3D3D !important;
    border-color: #3D3D3D !important;
    border-radius: 50px !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
}
.bb-customer-page .btn-primary:hover {
    background-color: #2D2D2D !important;
    border-color: #2D2D2D !important;
}
.bb-customer-page .btn-success {
    background-color: #8B7E78 !important;
    border-color: #8B7E78 !important;
    border-radius: 50px !important;
}
.bb-customer-page .btn-danger {
    border-radius: 50px !important;
}
.bb-customer-page .btn-outline-primary {
    border-color: #3D3D3D !important;
    color: #3D3D3D !important;
    border-radius: 50px !important;
}
.bb-customer-page .btn-outline-primary:hover {
    background-color: #3D3D3D !important;
    color: #fff !important;
}
.bb-customer-page .badge.bg-primary {
    background-color: #3D3D3D !important;
}
.bb-customer-page .badge.bg-success {
    background-color: #8B7E78 !important;
}
.bb-customer-page .form-control,
.bb-customer-page .form-select {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
}
.bb-customer-page .form-control:focus,
.bb-customer-page .form-select:focus {
    border-color: #3D3D3D !important;
    box-shadow: 0 0 0 3px rgba(74, 63, 58, 0.12) !important;
}
.bb-customer-page .form-label {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #3d3d3d !important;
}
.bb-customer-page .table {
    font-family: "Inter", sans-serif !important;
}
.bb-customer-page .table thead th {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #9a9a9a !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f3f4f6 !important;
}
.bb-customer-page .table td {
    font-size: 14px !important;
    color: #5a5a5a !important;
    vertical-align: middle !important;
    border-color: #f9fafb !important;
}
.bb-customer-page .pagination .page-link {
    border-radius: 8px !important;
    font-family: "Inter", sans-serif !important;
    border-color: #e5e7eb !important;
    color: #5a5a5a;
}
.bb-customer-page .pagination .page-item.active .page-link {
    background-color: #3D3D3D !important;
    border-color: #3D3D3D !important;
}
.bb-customer-page h1,
.bb-customer-page h2,
.bb-customer-page h3,
.bb-customer-page h4,
.bb-customer-page h5 {
    font-family: "Inter", sans-serif !important;
}

/* Alert / notifiche */
.bb-customer-page .alert-success {
    background: rgba(244, 160, 181, 0.1) !important;
    border-color: rgba(244, 160, 181, 0.3) !important;
    color: #2d6a4f !important;
    border-radius: 12px !important;
}
.bb-customer-page .alert-danger {
    background: rgba(244, 160, 181, 0.1) !important;
    border-color: rgba(244, 160, 181, 0.3) !important;
    border-radius: 12px !important;
}
.bb-customer-page .alert-info {
    background: rgba(74, 63, 58, 0.08) !important;
    border-color: rgba(74, 63, 58, 0.2) !important;
    border-radius: 12px !important;
}

/* =========================================================
   MEGA MENU — Shop categorie
   ========================================================= */

/* Nav list custom */
.pm-nav {
    display: flex;
    align-items: center;
}
.pm-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pm-nav-item {
    position: relative;
}

.pm-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3d3d3d;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.pm-nav-link:hover,
.pm-nav-link.active {
    color: #3D3D3D;
    background: rgba(74, 63, 58, 0.06);
}

.pm-nav-chevron {
    transition: transform 0.2s ease;
    color: #9a9a9a;
    flex-shrink: 0;
}
.pm-nav-item--mega:hover .pm-nav-chevron {
    transform: rotate(180deg);
    color: #3D3D3D;
}

/* Mega menu dropdown */
.pm-megamenu {
    position: absolute;
    top: 100%; /* attaccato al link — nessun gap che chiude il menu */
    left: 50%;
    transform: translateX(-50%);
    width: 680px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
    z-index: 9999;
    padding-top: 16px; /* distanza visiva ottenuta con padding invece del gap */
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
}

/* Ponte invisibile: copre lo spazio tra il link e il bordo visivo del pannello
   così il mouse non "cade nel vuoto" e il menu rimane aperto */
.pm-megamenu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.pm-nav-item--mega:hover .pm-megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition:
        opacity 0.15s ease,
        visibility 0.15s ease,
        transform 0.15s ease;
}

/* Piccolo delay in uscita: evita chiusura accidentale durante lo spostamento del mouse */
.pm-nav-item--mega .pm-megamenu {
    transition-delay: 0s;
}
.pm-nav-item--mega:not(:hover) .pm-megamenu {
    transition-delay: 80ms;
}

/* Freccia decorativa in alto */
.pm-megamenu::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #f3f4f6;
    border-top: 1px solid #f3f4f6;
}

/* Griglia categorie */
.pm-megamenu-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.pm-megamenu-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background: #f9fafb;
}
.pm-megamenu-cat:hover {
    border-color: #3D3D3D;
    background: rgba(74, 63, 58, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 63, 58, 0.12);
}

.pm-megamenu-cat-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
}
.pm-megamenu-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.pm-megamenu-cat:hover .pm-megamenu-cat-img img {
    transform: scale(1.06);
}

.pm-megamenu-cat-name {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #3d3d3d;
    text-align: center;
    line-height: 1.3;
}
.pm-megamenu-cat:hover .pm-megamenu-cat-name {
    color: #3D3D3D;
}

/* Footer mega menu */
.pm-megamenu-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.pm-megamenu-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: #3D3D3D;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-right: auto;
}
.pm-megamenu-all:hover {
    background: #2D2D2D;
    color: #ffffff;
    transform: translateX(2px);
}

.pm-megamenu-link {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #7a7a7a;
    text-decoration: none;
    transition: color 0.2s;
}
.pm-megamenu-link:hover {
    color: #3D3D3D;
}

/* =========================================================
   MENU MOBILE OFF-CANVAS — colori palette BonBon sul pannello padre
   ========================================================= */

/* Colore primario sul pulsante close hover */
.offcanvas__close-btn:hover {
    background-color: #3D3D3D !important;
    border-color: #3D3D3D !important;
}

/* Link menu mobile: font Inter + colori palette */
.tp-main-menu-mobile .main-menu > nav > ul > li > a,
.tp-main-menu-mobile ul li a {
    font-family: "Inter", sans-serif !important;
    color: #3d3d3d !important;
}

.tp-main-menu-mobile .main-menu > nav > ul > li > a:hover,
.tp-main-menu-mobile ul li a:hover {
    color: #3D3D3D !important;
}

/* Bottone "Contact Us" nella barra off-canvas */
.offcanvas__btn .tp-btn-2 {
    border-radius: 50px !important;
    background: #3D3D3D !important;
    color: #ffffff !important;
    border-color: #3D3D3D !important;
}

.offcanvas__btn .tp-btn-2:hover {
    background: #2D2D2D !important;
    border-color: #2D2D2D !important;
}

/* =========================================================
   PRODUCT CARDS — stile BonBon palette
   Sovrascrive tp-product-item-3 del tema padre
   ========================================================= */

/* Card wrapper */
.tp-product-item-3 {
    background: #ffffff;
    border: 1px solid #f0f1f3;
    border-radius: 16px;
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
    margin-bottom: 24px !important;
}

.tp-product-item-3:hover {
    box-shadow: 0 12px 40px rgba(74, 63, 58, 0.12);
    transform: translateY(-4px);
}

/* Immagine: altezza fissa con object-fit */
.tp-product-thumb-3 {
    background: #fafbfc;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin-bottom: 0 !important;
}

.tp-product-thumb-3 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease !important;
}

.tp-product-item-3:hover .tp-product-thumb-3 img {
    transform: scale(1.06) !important;
}

/* Contenuto testuale */
.tp-product-content-3 {
    padding: 14px 16px 16px;
}

/* Titolo */
.tp-product-title-3 {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #3d3d3d !important;
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
}

.tp-product-title-3 a {
    color: #3d3d3d !important;
    text-decoration: none !important;
}

.tp-product-title-3 a:hover {
    color: #3D3D3D !important;
}

/* Prezzo */
.tp-product-price-3 span,
.tp-product-price-3 .new-price {
    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #3D3D3D !important;
}

.tp-product-price-3 .old-price {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #9a9a9a !important;
    text-decoration: line-through !important;
}

/* Badge (Nuovo, Saldo ecc.) */
.tp-product-badge span {
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 3px 10px !important;
}

/* Pallini varianti colore nella card prodotto */
.pm-product-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.pm-product-color-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.pm-color-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.12);
    cursor: default;
    transition: transform 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
}
.pm-color-dot:hover {
    transform: scale(1.25);
    border-color: rgba(0,0,0,0.3);
}

/* Bottone aggiungi al carrello */
.tp-product-add-cart-btn-large-wrapper { display: none !important; }
.tp-product-item-3 .tp-product-add-cart-btn-large {
    background: #3D3D3D !important;
    color: #ffffff !important;
    border-radius: 0 0 16px 16px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    width: 100% !important;
    padding: 10px !important;
    transition: background 0.2s ease !important;
}

.tp-product-item-3 .tp-product-add-cart-btn-large:hover {
    background: #2D2D2D !important;
}

/* Icone azione (wishlist, quick view) */
.tp-product-action-btn-3 {
    background: #ffffff !important;
    border: 1px solid #f0f1f3 !important;
    border-radius: 50% !important;
    color: #5a5a5a !important;
    transition: all 0.2s ease !important;
}

.tp-product-action-btn-3:hover,
.tp-product-action-btn-3.active {
    background: #3D3D3D !important;
    border-color: #3D3D3D !important;
    color: #ffffff !important;
}

/* Sezione titolo sopra la griglia */
.tp-product-arrival-area .tp-section-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    color: #3d3d3d !important;
}

/* Bottone "Vedi tutti" in fondo alla sezione */
.tp-product-arrival-area .tp-btn,
.tp-product-arrival-area a.tp-btn {
    border-radius: 50px !important;
    background: #3D3D3D !important;
    color: #ffffff !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    padding: 12px 32px !important;
    transition: background 0.2s ease !important;
}

.tp-product-arrival-area .tp-btn:hover,
.tp-product-arrival-area a.tp-btn:hover {
    background: #2D2D2D !important;
}

/* =========================================================
   PM-CATEGORIES — shortcode categorie BonBon Kids
   ========================================================= */

.pm-categories-area {
    padding: 60px 0 40px;
    background-color: #fff8f0;
}

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

@media (max-width: 991px) {
    .pm-cat-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 575px) {
    .pm-cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Card: link che contiene tutto */
.pm-cat-card {
    display: block;
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none !important;
    cursor: pointer;
    background: #e9ecef;
}

/* Immagine di sfondo full-cover */
.pm-cat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.pm-cat-card:hover img {
    transform: scale(1.06);
}

/* Overlay gradiente dal basso — migliora leggibilità testo su immagine */
.pm-cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.08) 50%, transparent 100%);
    z-index: 1;
    border-radius: inherit;
}

/* Testo in basso a sinistra */
.pm-cat-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 110px;
    z-index: 2;
}

.pm-cat-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 5px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 1px 2px rgba(0,0,0,0.9);
    letter-spacing: 0.01em;
}

.pm-cat-count {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff !important;
    display: block;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}

/* Pill "Esplora" — sempre visibile come su Hetzner */
.pm-cat-pill {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    opacity: 1;
    transition: background 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.pm-cat-card:hover .pm-cat-pill {
    background: rgba(255,255,255,0.35);
    transform: translateX(-3px);
}

/* =========================================================
   PRODUCTS GRID — sezione "Prodotti in Evidenza"
   ========================================================= */

/* Sfondo bianco — alterna con il cream delle categorie sopra */
.tp-product-arrival-area {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    background-color: #ffffff !important;
}

/* Margine sotto la griglia */
.tp-product-arrival-area [class*="col-"] .tp-product-item-3 {
    margin-bottom: 28px !important;
}

/* =========================================================
   SHOP PAGE — Category cards (widget ProductCategoriesWidget)
   ========================================================= */

.pm-shop-categories {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}

/* Grid: ogni colonna contiene card + tag sotto */
.pm-shop-cats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1199px) {
    .pm-shop-cats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767px) {
    .pm-shop-cats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}
@media (max-width: 480px) {
    .pm-shop-cats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Colonna: card + tag impilati verticalmente */
.pm-shop-cat-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Card ── */
.pm-shop-cat-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f1f3;
    background: #ffffff;
    text-decoration: none !important;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.pm-shop-cat-card:hover {
    box-shadow: 0 8px 32px rgba(74, 63, 58, 0.14);
    transform: translateY(-3px);
}

/* Immagine quadrata */
.pm-shop-cat-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.pm-shop-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.pm-shop-cat-card:hover .pm-shop-cat-img img {
    transform: scale(1.06);
}

/* Overlay gradiente dal basso */
.pm-shop-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 20, 40, 0.45) 0%,
        transparent 55%
    );
    display: flex;
    align-items: flex-end;
    padding: 10px;
    transition: opacity 0.3s ease;
}

/* Nome sovrapposto sull'immagine (visibile su hover) */
.pm-shop-cat-name-overlay {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.pm-shop-cat-card:hover .pm-shop-cat-name-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Body sotto l'immagine */
.pm-shop-cat-body {
    padding: 10px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

/* Nome categoria */
.pm-shop-cat-name {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3d3d3d;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.pm-shop-cat-card:hover .pm-shop-cat-name {
    color: #3D3D3D;
}

/* "Esplora →" per categorie senza figli */
.pm-shop-cat-explore {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #3D3D3D;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pm-shop-cat-card:hover .pm-shop-cat-explore {
    opacity: 1;
}

/* ── Sottocategorie: SOTTO la card ── */
.pm-shop-cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 2px;
}

.pm-shop-cat-tag {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #5a5a5a;
    background: #f3f4f6;
    border: 1px solid #ebebeb;
    border-radius: 50px;
    padding: 3px 9px;
    text-decoration: none !important;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    display: inline-block;
    line-height: 1.4;
}

.pm-shop-cat-tag:hover {
    background: rgba(74, 63, 58, 0.1);
    color: #3D3D3D;
    border-color: rgba(74, 63, 58, 0.25);
}

/* "+N altri" */
.pm-shop-cat-tag--more {
    color: #3D3D3D;
    background: rgba(74, 63, 58, 0.06);
    border-color: rgba(74, 63, 58, 0.2);
}

.pm-shop-cat-tag--more:hover {
    background: rgba(74, 63, 58, 0.15);
}

/* Grid responsive: 6 col desktop → 4 tablet → 3 mobile → 2 small */
.pm-shop-cats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1199px) {
    .pm-shop-cats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767px) {
    .pm-shop-cats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .pm-shop-cats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Card singola */
.pm-shop-cat-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f1f3;
    background: #ffffff;
    text-decoration: none !important;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.pm-shop-cat-card:hover {
    box-shadow: 0 8px 32px rgba(74, 63, 58, 0.14);
    transform: translateY(-3px);
}

/* Immagine quadrata con overlay */
.pm-shop-cat-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.pm-shop-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.pm-shop-cat-card:hover .pm-shop-cat-img img {
    transform: scale(1.06);
}

.pm-shop-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 30, 50, 0.35) 0%,
        transparent 60%
    );
    transition: opacity 0.3s ease;
}

.pm-shop-cat-card:hover .pm-shop-cat-overlay {
    opacity: 1.4;
}

/* Testo sotto l'immagine */
.pm-shop-cat-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pm-shop-cat-name {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3d3d3d;
    line-height: 1.3;
    display: block;
    transition: color 0.2s ease;
}

.pm-shop-cat-card:hover .pm-shop-cat-name {
    color: #3D3D3D;
}

.pm-shop-cat-count {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #9a9a9a;
    display: block;
}

/* Sottocategorie come pill/tag */
.pm-shop-cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.pm-shop-cat-tag {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #5a5a5a;
    background: #f3f4f6;
    border-radius: 50px;
    padding: 2px 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    display: inline-block;
}

.pm-shop-cat-tag:hover {
    background: rgba(74, 63, 58, 0.12);
    color: #3D3D3D;
}

.pm-shop-cat-tag--more {
    color: #3D3D3D;
    background: rgba(74, 63, 58, 0.06);
    border-color: rgba(74, 63, 58, 0.2);
}

.pm-shop-cat-tag--more:hover {
    background: rgba(74, 63, 58, 0.15);
}

/* =========================================================
   CONTACT PAGE — form plugin Botble Contact
   ========================================================= */

/* Contenitore generale: rimuove il box-shadow pesante del padre */
.tp-contact-inner {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Wrapper form: card pulita */
.tp-contact-wrapper {
    margin-right: 0 !important;
    background: #ffffff;
    border: 1px solid #f0f1f3;
    border-radius: 20px;
    padding: 36px 40px !important;
}

@media (max-width: 767px) {
    .tp-contact-wrapper {
        padding: 24px 20px !important;
    }
}

/* Titolo form */
.tp-contact-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin-bottom: 28px !important;
}

/* Gap tra campi */
.contact-form-row {
    gap: 0 !important;
}

/* Tutti i campi full-width — no colonne affiancate */
.contact-column-6,
.contact-column-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

.contact-form-group {
    margin-bottom: 16px !important;
}

/* Label */
.tp-contact-form .form-label,
.tp-contact-form label.form-label {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
    display: block !important;
    /* rimuove il posizionamento assoluto del padre */
    position: static !important;
    background: transparent !important;
    left: auto !important;
    top: auto !important;
    padding: 0 !important;
}

/* Input e textarea */
.tp-contact-form .contact-form-input:not([type="checkbox"]):not([type="radio"]),
.tp-contact-form
    input.contact-form-input:not([type="checkbox"]):not([type="radio"]),
.contact-form
    input.contact-form-input:not([type="checkbox"]):not([type="radio"]) {
    width: 100% !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    color: #3d3d3d !important;
    background: #fafbfc !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    height: 40px !important;
    min-height: unset !important;
    max-height: 40px !important;
    line-height: 22px !important;
    box-sizing: border-box !important;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease !important;
    outline: none !important;
    display: block !important;
}

.tp-contact-form .contact-form-input::placeholder,
.contact-form input.contact-form-input::placeholder {
    color: #b0b5bc !important;
    font-size: 13px !important;
}

.tp-contact-form .contact-form-input:focus,
.contact-form input.contact-form-input:focus {
    border-color: #3D3D3D !important;
    box-shadow: 0 0 0 3px rgba(74, 63, 58, 0.12) !important;
    background: #ffffff !important;
}

/* Textarea — altezza libera */
.tp-contact-form textarea.contact-form-input,
.contact-form textarea.contact-form-input {
    height: auto !important;
    max-height: unset !important;
    min-height: 120px !important;
    line-height: 1.6 !important;
    resize: vertical !important;
}

.contact-form-input:focus {
    border-color: #3D3D3D !important;
    box-shadow: 0 0 0 3px rgba(74, 63, 58, 0.12) !important;
    background: #ffffff !important;
}

/* Textarea */
textarea.contact-form-input {
    min-height: 130px !important;
    resize: vertical !important;
}

/* Checkbox privacy */
.contact-form .form-check {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding-left: 0 !important;
    margin-top: 4px !important;
}

.contact-form .form-check-input {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    border: 2px solid #c8cdd5 !important;
    border-radius: 4px !important;
    margin-top: 2px !important;
    cursor: pointer !important;
    accent-color: #4A3F3A !important;
    flex-shrink: 0 !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    background-color: #fff !important;
}
.contact-form .form-check-input:checked {
    background-color: #4A3F3A !important;
    border-color: #4A3F3A !important;
    accent-color: #4A3F3A !important;
    /* Tick SVG bianco */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8l3.5 3.5L13 4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 11px !important;
}

.contact-form .form-check-label {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    color: #7a7a7a !important;
    line-height: 1.5 !important;
    cursor: pointer !important;
}

/* Bottone submit */
.contact-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: #3D3D3D !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 13px 36px !important;
    cursor: pointer !important;
    transition:
        background 0.2s ease,
        transform 0.2s ease !important;
    margin-top: 8px !important;
    width: 100% !important;
}

.contact-button:hover {
    background: #2D2D2D !important;
    transform: translateY(-1px) !important;
}

/* Sidebar info contatti — dentro il nostro template già ha stile,
   questa sezione del plugin viene nascosta perché è ridondante */
.pm-contact-form-right .tp-contact-info-wrapper {
    display: none !important;
}

/* Colonna full-width dato che nascondiamo la sidebar del plugin */
.pm-contact-form-right .col-xl-9,
.pm-contact-form-right .col-lg-8 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

/* Azzera tutti i wrapper intermedi del plugin così la card occupa
   esattamente la stessa altezza di pm-contact-form-left */
.pm-contact-form-right {
    display: flex;
    flex-direction: column;
}

.pm-contact-form-right .tp-contact-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 0 !important;
    margin: 0 !important;
}

.pm-contact-form-right .tp-contact-area > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.pm-contact-form-right .tp-contact-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pm-contact-form-right .tp-contact-inner > .row {
    flex: 1;
}

.pm-contact-form-right .tp-contact-inner > .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* La card form si estende a tutta l'altezza */
.pm-contact-form-right .tp-contact-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-right: 0 !important;
}

.pm-contact-form-right .tp-contact-form {
    flex: 1;
}

/* =========================================================
   SHOP PAGE — Layout generale, sidebar, toolbar, brand
   ========================================================= */

/* ── 1. Sfondo e spaziatura generale ── */

/* Sfondo leggero sulla shop area per differenziarla dal bianco puro */
.tp-shop-area {
    background-color: #f4f6f8 !important;
    min-height: 60vh;
}

.tp-shop-area > .container {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
}

/* ── 2. Sidebar filtri ── */

/* Contenitore sticky */
.tp-sidebar-wrapper {
    top: 90px !important;
}

/* Ogni widget nella sidebar: card con bordo */
.tp-shop-widget {
    background: #ffffff !important;
    border: 1px solid #f0f1f3 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
}

/* Titolo widget sidebar */
.tp-shop-widget-title {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #3d3d3d !important;
    border-bottom: 2px solid #f0f1f3 !important;
    padding-bottom: 12px !important;
    margin-bottom: 16px !important;
}

/* Link filtri (categorie, tag, ecc.) */
.tp-sidebar-widget ul li a {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    color: #5a5a5a !important;
    padding-left: 20px !important;
    transition: color 0.2s ease !important;
}

.tp-sidebar-widget ul li a:hover {
    color: #3D3D3D !important;
}

/* Pallino prima del link */
.tp-sidebar-widget ul li a::after {
    background-color: #c8d5de !important;
    width: 5px !important;
    height: 5px !important;
    top: 10px !important;
}

/* Search nella sidebar */
.tp-sidebar-search-input input {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 50px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    height: 44px !important;
    padding-left: 18px !important;
    background: #fafbfc !important;
    transition: border-color 0.2s ease !important;
}

.tp-sidebar-search-input input:focus {
    border-color: #3D3D3D !important;
    outline: none !important;
}

.tp-sidebar-search-input button {
    color: #3D3D3D !important;
}

/* Price range slider — colore primario */
.tp-range-slider-wrapper .noUi-connect {
    background: #3D3D3D !important;
}

.tp-range-slider-wrapper .noUi-handle {
    border-color: #3D3D3D !important;
    box-shadow: 0 0 0 3px rgba(74, 63, 58, 0.15) !important;
}

/* Filter button mobile (apre sidebar) */
.tp-filter-btn {
    background-color: #3D3D3D !important;
    border-color: #3D3D3D !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
}

.tp-filter-btn:hover {
    background-color: #2D2D2D !important;
    border-color: #2D2D2D !important;
    color: #ffffff !important;
}

/* ── 3. Toolbar sort/grid/risultati ── */

.tp-shop-top {
    background: #ffffff !important;
    border: 1px solid #f0f1f3 !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    margin-bottom: 24px !important;
}

/* Toggle griglia/lista */
.tp-shop-top-tab .nav-tabs .nav-item .nav-link {
    border-radius: 8px !important;
    border: 1.5px solid #e5e7eb !important;
    color: #9a9a9a !important;
    font-size: 16px !important;
    height: 36px !important;
    line-height: 34px !important;
    transition: all 0.2s ease !important;
}

.tp-shop-top-tab .nav-tabs .nav-item .nav-link.active,
.tp-shop-top-tab .nav-tabs .nav-item .nav-link:hover {
    border-color: #3D3D3D !important;
    color: #3D3D3D !important;
    background: rgba(74, 63, 58, 0.06) !important;
}

/* Testo risultati */
.tp-shop-top-result p {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    color: #9a9a9a !important;
}

/* Select ordinamento */
.tp-shop-top-select .nice-select {
    border-radius: 8px !important;
    border: 1.5px solid #e5e7eb !important;
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    height: 36px !important;
    line-height: 34px !important;
    background: #fafbfc !important;
    color: #3d3d3d !important;
    padding: 0 32px 0 14px !important;
}

.tp-shop-top-select .nice-select:hover {
    border-color: #3D3D3D !important;
}

/* ── 4. Brand slider ── */

.tp-brand-area {
    background: #ffffff !important;
    border: 1px solid #f0f1f3 !important;
    border-radius: 16px !important;
    padding: 20px 24px !important;
    margin-bottom: 32px !important;
}

.tp-brand-item {
    background: #fafbfc !important;
    border: 1px solid #f0f1f3 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    min-height: 80px !important;
    line-height: 80px !important;
    transition: background 0.2s ease !important;
}

.tp-brand-item:hover {
    background: rgba(74, 63, 58, 0.05) !important;
}

.tp-brand-item img {
    filter: grayscale(40%) !important;
    opacity: 0.7 !important;
    transition:
        filter 0.2s ease,
        opacity 0.2s ease !important;
}

.tp-brand-item:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */

/* Sfondo caldo cream sulla pagina prodotto */
.tp-product-details-area {
    background: #FFF8F0 !important;
}

/* Galleria immagini: bordo arrotondato con ombra neutra */
.tp-product-details-thumb-wrapper {
    border-radius: 20px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04) !important;
}

/* Thumbnail selezionata: bordo scuro */
.tp-product-details-nav .swiper-slide.active img,
.tp-product-details-nav .swiper-slide:hover img,
.bb-product-gallery-thumbnails .slick-slide.slick-current img {
    border-color: #3D3D3D !important;
}

.bb-product-gallery-thumbnails .slick-slide img {
    border-radius: 10px !important;
    border: 2px solid transparent !important;
    transition: border-color 0.2s ease !important;
}

.bb-product-gallery-thumbnails .slick-slide:hover img {
    border-color: rgba(61, 61, 61, 0.35) !important;
}

/* Box info prodotto: card bianca con ombra */
.tp-product-details-wrapper {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 36px !important;
    border: none !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03) !important;
}

/* Categoria sopra il titolo — badge scuro */
.tp-product-details-category a {
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #3D3D3D !important;
    background: rgba(61, 61, 61, 0.08) !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
}

/* Titolo prodotto */
.tp-product-details-title {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
}

/* Prezzo — nero scuro */
.tp-product-details-price-wrapper .tp-product-details-price.new-price {
    font-family: "Inter", sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #3D3D3D !important;
}

.tp-product-details-price-wrapper .tp-product-details-price.old-price {
    font-size: 18px !important;
    color: #b0b0b0 !important;
    text-decoration: line-through !important;
}

/* Rating stelle — ambra palette */
.tp-product-details-review-icon svg {
    color: #f59e0b !important;
}
.tp-product-details-review-text a {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    color: #7a7a7a !important;
    text-decoration: none !important;
}

/* Descrizione sotto titolo — testo più caldo */
.tp-product-details-description p {
    color: #5A5A5A !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

/* Separatore */
.tp-product-details-action-wrapper {
    border-top: 1px solid rgba(244, 160, 181, 0.12) !important;
    padding-top: 24px !important;
}

/* Label (Quantità, Varianti ecc.) */
.tp-product-details-action-title {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #5a5a5a !important;
}

/* Swatch label (Color:, Size:) */
.bb-product-attribute-swatch-title {
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
}

/* Size buttons — bordo e hover blu */
.bb-product-attribute-swatch-list .bb-product-attribute-swatch-item label span.bb-product-attribute-swatch-display {
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.bb-product-attribute-swatch-list .bb-product-attribute-swatch-item label input:checked + .bb-product-attribute-swatch-display {
    border-color: #F4A0B5 !important;
    box-shadow: 0 0 0 1px #F4A0B5 !important;
}

/* Text swatches (Size: Small, Medium, Large) */
.attribute-swatch:not(.color-swatch) .bb-product-attribute-swatch-item label {
    border-radius: 10px !important;
    transition: all 0.2s !important;
}

.attribute-swatch:not(.color-swatch) .bb-product-attribute-swatch-item label:hover {
    border-color: #F4A0B5 !important;
}

.attribute-swatch:not(.color-swatch) .bb-product-attribute-swatch-item.pe-choice label {
    border-color: #F4A0B5 !important;
    background: rgba(244, 160, 181, 0.06) !important;
    color: #F4A0B5 !important;
}

/* Input quantità */
.tp-product-details-quantity .tp-product-quantity-input {
    border: 1.5px solid #e0ddd8 !important;
    border-radius: 10px !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    background: #FFFCF8 !important;
}

.tp-product-details-quantity .tp-product-quantity-btn {
    border-color: #e0ddd8 !important;
    color: #3D3D3D !important;
    border-radius: 10px !important;
    background: #FFFCF8 !important;
    transition: all 0.2s !important;
}

.tp-product-details-quantity .tp-product-quantity-btn:hover {
    border-color: #F4A0B5 !important;
    color: #F4A0B5 !important;
}

/* Bottone Add to Cart — cream solido, hover scurisce */
.tp-product-details-add-to-cart-btn {
    background: #FFF8F0 !important;
    border: 1.5px solid #e0c9b0 !important;
    border-radius: 50px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    color: #3D3D3D !important;
    box-shadow: 0 4px 14px rgba(224, 201, 176, 0.35) !important;
    transition:
        background 0.25s,
        color 0.25s,
        border-color 0.25s,
        transform 0.2s,
        box-shadow 0.25s !important;
}

.tp-product-details-add-to-cart-btn:hover {
    background: #eddcca !important;
    border-color: #c9a882 !important;
    color: #3D3D3D !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(224, 201, 176, 0.55) !important;
}

/* Bottone Buy Now — rosa solido, hover scurisce */
.tp-product-details-buy-now-btn {
    background: #F4A0B5 !important;
    border: 1.5px solid #F4A0B5 !important;
    border-radius: 50px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(244, 160, 181, 0.30) !important;
    transition:
        background 0.25s,
        color 0.25s,
        border-color 0.25s,
        transform 0.2s,
        box-shadow 0.25s !important;
}

.tp-product-details-buy-now-btn:hover {
    background: #d4809a !important;
    border-color: #d4809a !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(244, 160, 181, 0.45) !important;
}

/* Wishlist / Compare — link puliti senza bordo */
.tp-product-details-action-sm-btn {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #7a7a7a !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    gap: 6px !important;
    transition: color 0.2s !important;
}

.tp-product-details-action-sm-btn:hover {
    border: none !important;
    background: transparent !important;
    color: #F4A0B5 !important;
}

/* Inventory badge (Disponibile) — verde semantico */
.tp-product-details-inventory span {
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #4a9171 !important;
    background: rgba(109, 191, 158, 0.15) !important;
    padding: 4px 14px !important;
    border-radius: 50px !important;
}

/* SKU & Categoria meta — colori sottili */
.tp-product-details-query-item span {
    color: #7a7a7a !important;
}
.tp-product-details-query-item span a {
    color: #F4A0B5 !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.tp-product-details-query-item span a:hover {
    color: #d4809a !important;
}

/* Social share icons */
.tp-product-details-social a {
    color: #7a7a7a !important;
    transition: color 0.2s, transform 0.2s !important;
}
.tp-product-details-social a:hover {
    color: #F4A0B5 !important;
    transform: translateY(-2px) !important;
}

/* Payment/checkout badge area */
.tp-product-details-payment {
    background: #FFFCF8 !important;
    border: 1px solid rgba(244, 160, 181, 0.1) !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
}

/* Info mini (returns, dispatch) */
.tp-product-details-additional-info p,
.tp-product-details-msg p {
    color: #5a5a5a !important;
    font-size: 13px !important;
}
.tp-product-details-msg svg,
.tp-product-details-additional-info svg {
    color: #F4A0B5 !important;
}

/* Sezione descrizione prodotto — sfondo cream leggero */
.tp-product-details-desc-wrapper {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
    padding: 32px !important;
    margin-top: 32px !important;
}

.tp-product-details-desc-title {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin-bottom: 16px !important;
}

.tp-product-details-desc-item p {
    color: #5A5A5A !important;
    line-height: 1.7 !important;
}

/* Tab navigazione (Descrizione / Specifiche) */
.tp-product-details-tab-nav .nav-tabs,
.tp-product-details-tab-line .nav-tabs {
    border-bottom: 2px solid rgba(244, 160, 181, 0.1) !important;
}

.tp-product-details-tab-nav .nav-tabs .nav-link,
.tp-product-details-tab-line .nav-tabs .nav-link {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #7a7a7a !important;
    border-radius: 0 !important;
    border-bottom: 2px solid transparent !important;
    padding: 12px 20px !important;
    margin-bottom: -2px !important;
    transition:
        color 0.2s,
        border-color 0.2s !important;
}

.tp-product-details-tab-nav .nav-tabs .nav-link.active,
.tp-product-details-tab-nav .nav-tabs .nav-link:hover,
.tp-product-details-tab-line .nav-tabs .nav-link.active,
.tp-product-details-tab-line .nav-tabs .nav-link:hover {
    color: #F4A0B5 !important;
    border-bottom-color: #F4A0B5 !important;
    background: transparent !important;
}

/* Prodotti correlati — sfondo cream abbinato */
.tp-related-product {
    background: #FFF8F0 !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.tp-related-product .tp-section-title {
    font-family: "Playfair Display", Georgia, serif !important;
}

/* Bottom sticky bar — stile coerente */
.bb-product-quick-order,
.tp-product-details-sticky-actions {
    background: #ffffff !important;
    border-top: 1px solid #f0f0f0 !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06) !important;
}

/* =====================================================
   LINGUA + VALUTA nell'header principale (bianco)
   ===================================================== */
.pm-lang-currency-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
}

/* Reset stili del padre (pensati per barra scura in cima) */
.pm-lang-currency-wrap .tp-header-top-menu-item {
    position: relative;
    padding: 0;
    margin: 0;
    border-left: none !important;
}

.pm-lang-currency-wrap .tp-header-lang-toggle,
.pm-lang-currency-wrap .tp-header-currency-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #3d3d3d !important;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.pm-lang-currency-wrap .tp-header-lang-toggle:hover,
.pm-lang-currency-wrap .tp-header-currency-toggle:hover {
    background: #f4f6f8;
    color: #3D3D3D !important;
}

.pm-lang-currency-wrap .tp-header-lang-toggle img,
.pm-lang-currency-wrap .tp-header-lang-toggle .flag-icon,
.pm-lang-currency-wrap .tp-header-lang-toggle .flag,
.pm-lang-currency-wrap .tp-header-lang-toggle svg.flag {
    width: 18px !important;
    height: 13px !important;
    border-radius: 2px;
    object-fit: cover;
}

/* Dropdown: flag sizing in list items */
.pm-lang-currency-wrap .tp-header-top-menu-item > ul li a svg.flag,
.pm-lang-currency-wrap .tp-header-top-menu-item > ul li a .flag {
    width: 20px !important;
    height: 15px !important;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Dropdown apertura — hover CSS (fallback) + JS toggle */
.pm-lang-currency-wrap .tp-header-lang:hover > ul,
.pm-lang-currency-wrap .tp-header-lang:focus-within > ul,
.pm-lang-currency-wrap .tp-header-lang ul.tp-lang-list-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Dropdown lingua/valuta — override per sfondo bianco */
.pm-lang-currency-wrap .tp-header-top-menu-item > ul,
.pm-lang-currency-wrap .tp-header-currency .tp-currency-switcher {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    right: 0 !important;
    left: auto !important;
    background: #ffffff !important;
    border: 1px solid #e8ecf0 !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
    padding: 6px 0 !important;
    min-width: 140px !important;
    z-index: 9999 !important;
}

.pm-lang-currency-wrap .tp-header-top-menu-item > ul li a,
.pm-lang-currency-wrap .tp-header-currency .tp-currency-switcher li a,
.pm-lang-currency-wrap .tp-header-currency .tp-currency-switcher button {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #3d3d3d !important;
    background: transparent !important;
    transition: background 0.15s, color 0.15s !important;
}

.pm-lang-currency-wrap .tp-header-top-menu-item > ul li a:hover,
.pm-lang-currency-wrap .tp-header-currency .tp-currency-switcher li a:hover,
.pm-lang-currency-wrap .tp-header-currency .tp-currency-switcher button:hover {
    background: #f4f6f8 !important;
    color: #3D3D3D !important;
}

/* Desktop header: forza sfondo trasparente sui toggle lingua/valuta */
.pm-lang-currency-wrap .tp-header-lang-toggle,
.pm-lang-currency-wrap .tp-header-currency-toggle {
    background: transparent !important;
    border: none !important;
}

/* Spaziatura tra wrap lingua/valuta e icone (search/wishlist/cart) */
.pm-lang-currency-wrap {
    margin-right: 12px !important;
    padding-right: 12px !important;
    border-right: 1px solid rgba(0,0,0,0.08) !important;
}

/* Bandierina nel toggle desktop: allineamento verticale preciso */
.pm-lang-currency-wrap .tp-header-lang-toggle > span {
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* SVG bandiera: display block elimina lo spazio baseline */
.pm-lang-currency-wrap .tp-header-lang-toggle svg.flag,
.pm-lang-currency-wrap .tp-header-top-menu-item > ul li a svg.flag,
.offcanvas__bottom #tp-offcanvas-lang-toggle svg.flag,
.offcanvas__bottom .offcanvas__lang-list li a svg.flag {
    display: block !important;
    vertical-align: unset !important;
}

/* Testo codice lingua (IT/EN): line-height neutro per centratura precisa */
.pm-lang-currency-wrap .tp-header-lang-toggle .text-uppercase,
.offcanvas__bottom #tp-offcanvas-lang-toggle .text-uppercase,
.pm-lang-currency-wrap .tp-header-top-menu-item > ul li a .text-uppercase,
.offcanvas__bottom .offcanvas__lang-list li a .text-uppercase {
    line-height: 1 !important;
}

/* Mobile offcanvas: bandierina dentro la toggle — stessa altezza del font */
.offcanvas__bottom .offcanvas__lang-img-inline svg,
.offcanvas__bottom .offcanvas__lang-img-inline img {
    width: auto !important;
    height: 13px !important;
    display: block !important;
    border-radius: 2px !important;
    object-fit: cover !important;
}

/* Chevron down nel toggle lingua/valuta offcanvas: allineato al font */
.offcanvas__bottom #tp-offcanvas-lang-toggle > svg,
.offcanvas__bottom #tp-offcanvas-currency-toggle > svg,
.offcanvas__bottom .tp-lang-toggle > svg,
.offcanvas__bottom .tp-currency-toggle > svg {
    width: 13px !important;
    height: 13px !important;
    display: block !important;
}

/* Toggle lingua mobile: tutto un blocco cliccabile */
.offcanvas__bottom #tp-offcanvas-lang-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 10px !important;
    cursor: pointer !important;
    border-radius: 8px !important;
    transition: background 0.15s !important;
    user-select: none !important;
    -webkit-tap-highlight-color: rgba(74,63,58,0.08) !important;
}

.offcanvas__bottom #tp-offcanvas-lang-toggle:hover,
.offcanvas__bottom #tp-offcanvas-lang-toggle:active {
    background: rgba(74,63,58,0.06) !important;
}

/* ─────────────────────────────────────────────────────────
   OFFCANVAS — layout viewport-fit + selettori lingua/valuta
   ─────────────────────────────────────────────────────────
   Strategia:
   - .offcanvas__area   → altezza viewport, overflow hidden
   - .offcanvas__wrapper → scroll container con padding-bottom
                           sufficiente per non finire sotto il bottom
   - .offcanvas__content → flow normale, nessuno scroll separato
   - .offcanvas__bottom  → SEMPRE fisso al fondo del viewport
                           (no border-top: si fonde con lo sfondo)
   Risultato:
   - bottom sempre nella stessa posizione (fondo schermo)
   - nessuna riga che taglia sopra il bottone WhatsApp
   - lo scroll del menu non sposta il bottom
   ───────────────────────────────────────────────────────── */

.offcanvas__area {
    overflow: hidden !important;
    height: 100vh !important;
    height: 100dvh !important;
}

.offcanvas__wrapper {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    height: 100% !important;
    min-height: 0 !important;
    /* sticky bottom: nessun padding extra necessario */
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    display: block !important;
}

.offcanvas__close {
    position: sticky !important;
    top: 0 !important;
    z-index: 20 !important;
    background: transparent !important;
}

.offcanvas__content {
    overflow: visible !important;
    padding-bottom: 20px !important;
    flex: none !important;
}

/* Bottom bar: sticky al fondo del viewport offcanvas, senza riga netta */
.offcanvas__bottom {
    position: sticky !important;
    bottom: 0 !important;
    left: auto !important;
    right: auto !important;
    z-index: 10 !important;
    /* niente border-top: evita la linea che taglia il WA button */
    border-top: 0 !important;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px)) 20px !important;
    background: var(--tp-common-white, #fff) !important;
    /* margine top per separare dal contenuto sopra */
    margin-top: 24px !important;
}

/* Footer offcanvas: layout compatto inline */
.offcanvas__footer {
    padding: 12px 0 !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

/* Reset completo dei wrapper — nessun box visibile */
.offcanvas__bottom .offcanvas__select,
.offcanvas__bottom .offcanvas__lang,
.offcanvas__bottom .offcanvas__currency,
.offcanvas__bottom .offcanvas__currency-wrapper,
.offcanvas__bottom .offcanvas__lang-wrapper,
.offcanvas__bottom .offcanvas__lang-img {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    line-height: normal !important;
    box-shadow: none !important;
}

/* Layout inline per la riga lingua */
.offcanvas__bottom .offcanvas__lang.d-flex {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* La bandierina: dimensione fissa, niente ingrandimenti */
.offcanvas__bottom .offcanvas__lang-img svg,
.offcanvas__bottom .offcanvas__lang-img img {
    width: 20px !important;
    height: 14px !important;
    display: block !important;
    border-radius: 2px !important;
}

/* Toggle testo (IT / Italiano) */
.offcanvas__bottom .offcanvas__currency-selected-currency,
.offcanvas__bottom .offcanvas__currency-selected-lang,
.offcanvas__bottom .offcanvas__lang-selected-currency,
.offcanvas__bottom .offcanvas__lang-selected-lang,
.offcanvas__bottom .tp-lang-toggle,
.offcanvas__bottom .tp-currency-toggle {
    background: transparent !important;
    border: none !important;
    padding: 0 18px 0 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #3d3d3d !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    height: auto !important;
}

/* Riga valuta: stessa misura */
.offcanvas__bottom .offcanvas__currency-wrapper {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
}

/* Dropdown lista lingua/valuta nell'offcanvas — si apre verso l'alto */
.offcanvas__currency-list,
.offcanvas__lang-list {
    position: absolute !important;
    bottom: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 100 !important;
    background: #ffffff !important;
    border: 1px solid #e8ecf0 !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    padding: 6px 12px !important;
    min-width: 140px !important;
}

/* ─────────────────────────────────────────────────────────
   MANIFESTO — sezione citazione sotto l'hero
   ───────────────────────────────────────────────────────── */

.pm-manifesto {
    padding: clamp(64px, 8vw, 140px) clamp(20px, 5.5vw, 80px);
    background: #E7D7C9;
    text-align: center;
}
.pm-manifesto__inner {
    max-width: 860px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s cubic-bezier(0.22, 1, 0.36, 1), transform .85s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-manifesto__inner.pm-vis {
    opacity: 1;
    transform: none;
}
.pm-manifesto__quote {
    font-family: "Cormorant Garamond", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(22px, 3.8vw, 50px) !important;
    font-style: italic;
    font-weight: 300 !important;
    line-height: 1.42;
    color: #3D3D3D !important;
    margin: 0;
}
.pm-manifesto__quote strong {
    font-style: normal;
    font-weight: 500;
    color: #3D3D3D !important;
}
.pm-manifesto__rule {
    width: 44px;
    height: 1px;
    background: #E5C6C6;
    margin: 32px auto 0;
}
@media (max-width: 767px) {
    .pm-manifesto {
        padding: 52px 24px;
    }
}

/* ─────────────────────────────────────────────────────────
   VIDEO SHOWCASE — La Nostra Visione
   ───────────────────────────────────────────────────────── */
.pm-video-showcase {
    position: relative;
    overflow: hidden;
    min-height: clamp(460px, 68vh, 700px);
    display: flex;
    align-items: center;
    background: #3D3D3D;
}
.pm-video-showcase video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    opacity: 0.65;
}
.pm-video-showcase__ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,63,58,.85) 0%, rgba(74,63,58,.55) 60%, rgba(74,63,58,.35) 100%);
}
.pm-video-showcase__body {
    position: relative;
    z-index: 2;
    padding: clamp(56px, 7vw, 110px) clamp(20px, 5.5vw, 80px);
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s cubic-bezier(0.22,1,0.36,1), transform .9s cubic-bezier(0.22,1,0.36,1);
}
.pm-video-showcase__body.pm-vis {
    opacity: 1;
    transform: none;
}
.pm-video-showcase__eyebrow {
    display: inline-block;
    font-family: "DM Sans", "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #EDD9D4 !important;
    margin-bottom: 24px;
}
.pm-video-showcase__h {
    font-family: "Cormorant Garamond", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(38px, 6.5vw, 108px) !important;
    font-weight: 300 !important;
    line-height: 1.04;
    color: #ffffff !important;
    letter-spacing: -.03em;
    margin: 0 0 28px !important;
}
.pm-video-showcase__h .line { display: block; }
.pm-video-showcase__h em { font-style: italic; }
.pm-video-showcase__p {
    font-size: clamp(16px, 1.5vw, 19px) !important;
    line-height: 1.76;
    color: rgba(255,255,255,.72) !important;
    max-width: 580px;
    margin: 0 auto !important;
    font-weight: 300 !important;
}
@media (max-width: 767px) {
    .pm-video-showcase video { opacity: 0.5; }
}

/* ─────────────────────────────────────────────────────────
   EDITORIAL ROW — 58/42 grid, immagine sinistra + testo destra (stile promo)
   ───────────────────────────────────────────────────────── */
.pm-erow {
    display: grid;
    grid-template-columns: 58fr 42fr;
    min-height: clamp(420px, 52vh, 600px);
    overflow: hidden;
    background: #ffffff;
}
.pm-erow--r {
    grid-template-columns: 42fr 58fr;
}
.pm-erow__img {
    position: relative;
    overflow: hidden;
    background: #F3EDE7;
}
.pm-erow__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-erow:hover .pm-erow__img img {
    transform: scale(1.04);
}
.pm-erow__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 5.5vw, 76px) clamp(32px, 4.5vw, 72px);
    background: #F9F4EF;
}
.pm-erow--r .pm-erow__text {
    order: -1;
    background: #F3EDE7;
}
.pm-erow__eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #E5C6C6 !important;
    margin-bottom: 18px;
}
.pm-erow__h {
    font-family: "Cormorant Garamond", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(30px, 4vw, 54px) !important;
    font-weight: 300 !important;
    line-height: 1.08;
    color: #3D3D3D !important;
    letter-spacing: -.02em;
    margin: 0 0 18px !important;
}
.pm-erow__h em { font-style: italic; }
.pm-erow__desc {
    font-size: 15px !important;
    line-height: 1.84;
    color: #7A7268 !important;
    margin: 0 0 28px !important;
    font-weight: 300 !important;
    max-width: 420px;
}
.pm-erow__feats {
    list-style: none;
    padding: 0;
    margin: 0 0 38px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pm-erow__feats li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 14px !important;
    color: #8B7E78 !important;
}
.pm-erow__feats li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 1px;
    background: #E5C6C6;
}
.pm-erow__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500 !important;
    color: #3D3D3D !important;
    border-bottom: 1px solid #3D3D3D;
    padding-bottom: 5px;
    text-decoration: none;
    transition: color .3s, border-color .3s;
    align-self: flex-start;
}
.pm-erow__link span { transition: transform .3s; display: inline-block; }
.pm-erow__link:hover {
    color: #E5C6C6 !important;
    border-color: #E5C6C6 !important;
}
.pm-erow__link:hover span { transform: translateX(5px); }
/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .pm-erow, .pm-erow--r { grid-template-columns: 1fr; min-height: auto; }
    .pm-erow__img { min-height: 55vw; }
    .pm-erow--r .pm-erow__text { order: 0; }
}
@media (max-width: 767px) {
    .pm-erow__img img { transition: none !important; }
    .pm-erow:hover .pm-erow__img img { transform: none !important; }
    .pm-erow__img { min-height: 65vw; }
}

/* ══════════════════════════════════════════════════════════
   PALETTE OVERRIDE GLOBALE — Charcoal #3D3D3D × Terracotta #E5C6C6
   Sovrascrive tutti i riferimenti hardcoded al blu #3D3D3D
   ══════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 { font-family: "Cormorant Garamond", Georgia, serif !important; color: #3D3D3D !important; }

/* Header & nav hover */
.tp-header-top a:hover, .tp-header-top-2 a:hover { color: #3D3D3D !important; }
.tp-header-lang-content a:hover, .tp-header-currency-content a:hover, .tp-header-setting-content a:hover { color: #3D3D3D !important; background-color: rgba(74,63,58,.06) !important; }
.logo a { color: #3D3D3D !important; }
.tp-header-action-btn:hover { color: #3D3D3D !important; }
.main-menu ul li > a:hover, .main-menu ul li.active > a { color: #3D3D3D !important; }
.tp-submenu { border-top-color: #E5C6C6 !important; }
.tp-submenu li > a:hover { color: #3D3D3D !important; }
.tp-category-menu-btn { background-color: #3D3D3D !important; }
.tp-category-menu-btn:hover { background-color: #2D2D2D !important; }

/* Search */
.tp-header-search-wrapper:focus-within { border-color: #E5C6C6 !important; }
.tp-header-search-btn { background-color: #3D3D3D !important; }
.tp-header-search-btn:hover { background-color: #2D2D2D !important; }

/* Buttons */
.tp-btn:hover { background-color: #3D3D3D !important; box-shadow: 0 6px 20px rgba(74,63,58,.22) !important; }
.tp-btn-2, .tp-btn-blue { background-color: #3D3D3D !important; }
.tp-btn-2:hover, .tp-btn-blue:hover { background-color: #2D2D2D !important; }
.tp-btn-border:hover { background-color: #3D3D3D !important; border-color: #3D3D3D !important; color: #ffffff !important; }
.tp-link-btn, .tp-link-btn-2, .tp-link-btn-3 { color: #3D3D3D !important; }

/* Products */
.tp-product-list-add-to-cart-btn { background-color: rgba(74,63,58,.08) !important; color: #3D3D3D !important; border-color: rgba(74,63,58,.28) !important; }
.tp-product-list-add-to-cart-btn:hover { background-color: #3D3D3D !important; color: #fff !important; border-color: #3D3D3D !important; }
.tp-product-title a:hover { color: #3D3D3D !important; }
.tp-product-price span:not(.old-price) { color: #3D3D3D !important; }
.tp-product-badge span.product-sale { background-color: #E5C6C6 !important; color: #3D3D3D !important; }
.tp-product-badge span.product-trending { background-color: #8B7E78 !important; }
.tp-product-action-btn:hover { background-color: #3D3D3D !important; border-color: #3D3D3D !important; }

/* Section labels */
.pm-section-title-pre { color: #3D3D3D !important; background: rgba(74,63,58,.07) !important; }

/* ============================================================
   FONT OVERRIDE GLOBALE — Cormorant Garamond su titoli
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.tp-product-title a,
.tp-product-title,
.tp-product-sm-title a,
.tp-product-sm-title,
.tp-product-list-title a,
.tp-product-list-title,
.tp-product-related-title,
.tp-product-details-title,
.tp-product-details-title h3,
.tp-el-title,
.tp-product-tab-nav button,
.tp-product-tab-nav li a,
.tp-section-title,
.tp-section-title-2,
.tp-sidebar-widget-title,
.breadcrumb-title,
.tp-breadcrumb-title,
.tp-blog-title a,
.tp-blog-title,
.tp-checkout-bill-title,
.tp-order-title,
.tp-submenu li > a,
.tp-megamenu .tp-mega-menu-title,
.tp-widget-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
}

/* =====================================================
   OFFCANVAS — visibile anche su desktop
   Il padre nasconde .offcanvas__area con display:none
   su @media (min-width:992px) perché lì usava il nav
   orizzontale. Ora che usiamo hamburger sempre, forziamo
   display:block su tutti i breakpoint.
   ===================================================== */
@media (min-width: 992px) {
    .offcanvas__area {
        display: block !important;
    }
}

/* =====================================================
   OFFCANVAS — apre da SINISTRA (hamburger è a sinistra)
   Il padre usa inset-inline-end:0 + translateX(100%+80px)
   Sovrascriviamo per partire da sinistra.
   ===================================================== */
.offcanvas__area {
    inset-inline-end: auto !important;
    inset-inline-start: 0 !important;
    left: 0 !important;
    right: auto !important;
    transform: translateX(calc(-100% - 80px)) !important;
}
.offcanvas__area.offcanvas-opened {
    transform: translateX(0) !important;
}

/* Overlay — blush pink tenue come nell'index promo */
.body-overlay {
    background-color: #E5C6C6 !important;
}

/* =====================================================
   PM-COLLECTIONS — Sezione collezioni (img + testo alternati)
   ===================================================== */
.pm-collections-section {
    padding: 80px 0 0;
    background: linear-gradient(180deg, #fff 0%, #FFF8F0 100%);
    overflow: hidden;
}
.pm-collections-header {
    text-align: center;
    margin-bottom: 52px;
}
.pm-collections-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #3D3D3D;
    margin: 0;
    line-height: 1.2;
}

/* Wrapper quasi full-screen: margini laterali ridotti */
.pm-coll-wrap {
    padding: 0 24px 80px;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Riga singola — flexbox a 2 colonne */
.pm-coll-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
    transition: box-shadow 0.35s;
    min-height: 430px;
    max-height: 540px;
}
.pm-coll-row:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}

/* Riga inversa: immagine a destra */
.pm-coll-row--rev { flex-direction: row-reverse; }

/* Colonna immagine — 55% */
.pm-coll-img {
    flex: 0 0 55%;
    max-width: 55%;
    position: relative;
    overflow: hidden;
}
.pm-coll-img > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}
.pm-coll-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pm-coll-row:hover .pm-coll-img img { transform: scale(1.035); }

/* Badge hover sull'immagine */
.pm-coll-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3D3D3D;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
.pm-coll-row--rev .pm-coll-img-badge {
    left: auto;
    right: 24px;
}
.pm-coll-row:hover .pm-coll-img-badge {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Colonna testo — 45% */
.pm-coll-body {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 64px;
    background: #FFFAF6;
    position: relative;
}
.pm-coll-row--rev .pm-coll-body { background: #FDF6F0; }

/* Decorazione angolo */
.pm-coll-body::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, rgba(244,160,181,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.pm-coll-row--rev .pm-coll-body::before {
    right: auto; left: 0;
    background: radial-gradient(circle at top left, rgba(244,160,181,0.07) 0%, transparent 70%);
}

.pm-coll-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F4A0B5;
    margin-bottom: 16px;
}
.pm-coll-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px; height: 2px;
    background: #F4A0B5;
    border-radius: 2px;
    flex-shrink: 0;
}
.pm-coll-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #3D3D3D;
    margin: 0 0 20px;
    line-height: 1.15;
}
.pm-coll-divider {
    width: 40px;
    height: 3px;
    background: #F4A0B5;
    border-radius: 2px;
    margin-bottom: 20px;
}
.pm-coll-desc {
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}
.pm-coll-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #FFF8F0;
    color: #3D3D3D !important;
    border: 1.5px solid #e0c9b0;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    align-self: flex-start;
    box-shadow: 0 4px 14px rgba(224,201,176,0.35);
}
.pm-coll-btn:hover {
    background: #F4A0B5;
    color: #fff !important;
    border-color: #F4A0B5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,160,181,0.32);
}
.pm-coll-btn svg { transition: transform 0.25s; }
.pm-coll-btn:hover svg { transform: translateX(4px); }

/* Responsive */
@media (max-width: 1199px) {
    .pm-coll-name { font-size: 2rem; }
    .pm-coll-body { padding: 44px 48px; }
}
@media (max-width: 991px) {
    .pm-collections-title { font-size: 2rem; }
    .pm-coll-wrap { padding: 0 16px 60px; gap: 20px; }
    .pm-coll-row,
    .pm-coll-row--rev { flex-direction: column; min-height: unset; max-height: unset; }
    .pm-coll-img,
    .pm-coll-body { flex: 0 0 auto; max-width: 100%; }
    .pm-coll-img { min-height: 280px; max-height: 340px; }
    .pm-coll-body { padding: 36px 36px; }
    .pm-coll-name { font-size: 1.7rem; }
    .pm-coll-img-badge { opacity: 1; transform: none; pointer-events: auto; }
}
@media (max-width: 575px) {
    .pm-collections-section { padding-top: 56px; }
    .pm-collections-header { margin-bottom: 36px; }
    .pm-collections-title { font-size: 1.6rem; }
    .pm-coll-wrap { padding: 0 12px 48px; }
    .pm-coll-row { border-radius: 16px; }
    .pm-coll-img { min-height: 220px; max-height: 280px; }
    .pm-coll-body { padding: 28px 24px; }
    .pm-coll-name { font-size: 1.4rem; }
    .pm-coll-desc { font-size: 0.925rem; margin-bottom: 24px; }
    .pm-coll-img-badge { bottom: 16px; left: 16px; }
    .pm-coll-row--rev .pm-coll-img-badge { right: 16px; left: auto; }
}

/* ─────────────────────────────────────────────────────────
   FIX: Product sticky "Add to Cart" bar on mobile
   The parent theme sets bottom:63px on mobile to sit above
   the bottom nav, but the value doesn't match the actual
   nav height, creating a visible gap. We set bottom:0 with
   higher z-index so the bar sits flush at the bottom edge.
   ───────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .tp-product-details-sticky-actions {
        bottom: 0 !important;
        z-index: 1000 !important;
    }
}

/* ═══════════════════════════════════════════════
   PM-CUSTOM-PROJECT — Sezione "Su Misura" CTA
   Split layout: immagine + contenuto
   ═══════════════════════════════════════════════ */

.pm-project-cta-section {
    padding-top: 72px;
    padding-bottom: 0;
    background: #FFF8F0;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -16px 48px rgba(0,0,0,0.07);
    margin-top: -24px;
    position: relative;
    z-index: 2;
}

.pm-project-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

/* Immagine a sinistra */
.pm-project-cta-img {
    position: relative;
    overflow: hidden;
}
.pm-project-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.pm-project-cta-section:hover .pm-project-cta-img img {
    transform: scale(1.03);
}

/* Contenuto a destra */
.pm-project-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px;
    background: #FFF8F0;
}

.pm-project-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3D3D3D;
    line-height: 1.25;
    margin-bottom: 16px;
}

.pm-project-cta-desc {
    font-size: 1.05rem;
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* 3 Feature points */
.pm-project-cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}
.pm-project-cta-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.pm-project-cta-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pm-project-cta-feature strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3D3D3D;
    margin-bottom: 2px;
}
.pm-project-cta-feature p {
    font-size: 0.88rem;
    color: #7A7A7A;
    line-height: 1.5;
    margin: 0;
}

/* CTA buttons */
.pm-project-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.pm-project-cta-section .pm-label,
.pm-label-rosa {
    color: #F4A0B5 !important;
}

.pm-project-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #FFF8F0;
    color: #3D3D3D !important;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1.5px solid #e0c9b0;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 14px rgba(224,201,176,0.35);
}
.pm-project-cta-btn-primary:hover {
    background: #F4A0B5;
    color: #fff !important;
    border-color: #F4A0B5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,160,181,0.32);
}
.pm-project-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #25D366 !important;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1.5px solid #25D366;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pm-project-cta-btn-wa:hover {
    background: #25D366;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .pm-project-cta-grid {
        grid-template-columns: 1fr;
    }
    .pm-project-cta-img {
        max-height: 340px;
    }
    .pm-project-cta-content {
        padding: 40px 32px;
    }
    .pm-project-cta-title {
        font-size: 1.65rem;
    }
}
@media (max-width: 575px) {
    .pm-project-cta-content {
        padding: 32px 20px;
    }
    .pm-project-cta-title {
        font-size: 1.4rem;
    }
    .pm-project-cta-desc {
        font-size: 0.95rem;
    }
    .pm-project-cta-actions {
        flex-direction: column;
    }
    .pm-project-cta-btn-primary,
    .pm-project-cta-btn-wa {
        justify-content: center;
        width: 100%;
    }
}

/* ── DELIVERY TIME BADGE — scheda prodotto ── */
.pm-delivery-time-wrap {
    margin-bottom: 20px;
}

.pm-delivery-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    color: #3D3D3D;
    font-family: 'Inter', sans-serif;
}

.pm-delivery-time-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #3D3D3D;
}

.pm-free-shipping-icon,
.pm-custom-colors-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #3D3D3D;
}

.pm-free-shipping-badge,
.pm-custom-colors-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #3D3D3D;
    font-family: 'Inter', sans-serif;
}

.pm-delivery-time-wrap,
.pm-free-shipping-wrap,
.pm-custom-colors-wrap {
    margin-top: 8px;
}

.pm-delivery-time-label {
    color: #5A5A5A;
    font-weight: 500;
}

.pm-delivery-time-value {
    color: #3D3D3D;
    font-weight: 600;
}

@media (max-width: 576px) {
    .pm-delivery-time-badge,
    .pm-free-shipping-badge,
    .pm-custom-colors-badge {
        font-size: 13px;
    }
}


/* ── SELEZIONE VARIANTE OBBLIGATORIA ───────────────────────── */
/* Nasconde la sticky bar de acquisto finché nessuna variante è selezionata */
.pm-sticky-needs-variant {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}
.pm-sticky-needs-variant.pm-sticky-ready {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}
    color: var(--bk-bark, #8B7E78);
    font-size: 14px;
    line-height: 1.5;
    display: block;
    display: inline-block;
}

.pm-select-variant-msg svg {
    color: var(--bk-bark, #8B7E78);
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s;
}

/* Shake + evidenziazione quando si prova a cliccare senza variante scelta */
@keyframes pm-shake {
    0%   { transform: translateX(0); }
    15%  { transform: translateX(-6px); }
    30%  { transform: translateX(6px); }
    45%  { transform: translateX(-5px); }
    60%  { transform: translateX(5px); }
    75%  { transform: translateX(-3px); }
    90%  { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

.pm-select-variant-msg.pm-variant-shake {
    animation: pm-shake 0.45s ease-in-out;
    color: var(--primary-color, #4A3F3A);
    font-weight: 500;
}
.pm-select-variant-msg.pm-variant-shake svg {
    color: var(--primary-color, #4A3F3A);
    opacity: 1;
}

/* Overlay trasparente posizionato sopra i bottoni disabled — cattura i click */
.pm-btn-catcher {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: not-allowed;
}


/* ── PAGINE LEGALI ─────────────────────────────────────────── */
.pm-legal-notice {
    background: #F3EDE7;
    border-left: 4px solid #E5C6C6;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.6;
    color: #4A3F3A;
}

/* Footer links legali nel bottom bar */
.pm-footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.pm-footer-legal a {
    font-size: 12px;
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.2s;
}
.pm-footer-legal a:hover {
    color: #E5C6C6;
}


/* ══════════════════════════════════════════════════════════════
   PAGINE LEGALI — Layout editoriale BonBon Kids
   ══════════════════════════════════════════════════════════════ */

.pm-legal-page {
    background: var(--bk-ivory, #F9F4EF);
    min-height: 60vh;
    padding: 60px 0 100px;
}
.pm-legal-page--no-breadcrumb {
    padding-top: 100px;
}

.pm-legal-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Body ─────────────────────────────────────────────── */
.pm-legal-body {
    background: #ffffff;
    border-radius: 20px;
    padding: 56px 64px;
    box-shadow: 0 2px 24px rgba(74, 63, 58, 0.06);
    border: 1px solid var(--bk-border, #E7D7C9);
}

/* ── Titolo principale ────────────────────────────────── */
.pm-legal-body h1 {
    font-family: var(--tp-ff-heading, 'Cormorant Garamond', Georgia, serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color, #4A3F3A);
    line-height: 1.15;
    margin: 0 0 12px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--bk-border, #E7D7C9);
    letter-spacing: -0.3px;
}
.pm-legal-body h1::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--secondary-color, #E5C6C6);
    border-radius: 2px;
    margin-top: 16px;
}

/* ── H2 — Sezioni ─────────────────────────────────────── */
.pm-legal-body h2 {
    font-family: var(--tp-ff-heading, 'Cormorant Garamond', Georgia, serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color, #4A3F3A);
    margin: 48px 0 16px;
    padding-top: 32px;
    border-top: 1px solid var(--bk-border, #E7D7C9);
    line-height: 1.2;
    letter-spacing: -0.2px;
}
.pm-legal-body h2:first-of-type {
    margin-top: 32px;
    padding-top: 0;
    border-top: none;
}

/* ── H3, H4, H5 ────────────────────────────────────────── */
.pm-legal-body h3 {
    font-family: var(--tp-ff-heading, 'Cormorant Garamond', Georgia, serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color, #4A3F3A);
    margin: 32px 0 10px;
    letter-spacing: -0.1px;
}
.pm-legal-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color, #4A3F3A);
    margin: 28px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--tp-ff-body, 'Inter', sans-serif);
}
.pm-legal-body h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--bk-bark, #8B7E78);
    margin: 20px 0 6px;
    font-family: var(--tp-ff-body, 'Inter', sans-serif);
}

/* ── Paragrafi e testo ─────────────────────────────────── */
.pm-legal-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--bk-taupe, #7A7268);
    margin: 0 0 14px;
}
.pm-legal-body em {
    color: var(--bk-bark, #8B7E78);
    font-style: italic;
    font-size: 14px;
}
.pm-legal-body strong {
    color: var(--primary-color, #4A3F3A);
    font-weight: 600;
}

/* ── Liste ─────────────────────────────────────────────── */
.pm-legal-body ul,
.pm-legal-body ol {
    margin: 0 0 18px 0;
    padding-left: 0;
    list-style: none;
}
.pm-legal-body ul li,
.pm-legal-body ol li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--bk-taupe, #7A7268);
    padding: 6px 0 6px 24px;
    position: relative;
    border-bottom: 1px solid rgba(231, 215, 201, 0.4);
}
.pm-legal-body ul li:last-child,
.pm-legal-body ol li:last-child {
    border-bottom: none;
}
.pm-legal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color, #E5C6C6);
    flex-shrink: 0;
}
.pm-legal-body ol {
    counter-reset: pm-legal-counter;
}
.pm-legal-body ol li {
    counter-increment: pm-legal-counter;
}
.pm-legal-body ol li::before {
    content: counter(pm-legal-counter);
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color, #E5C6C6);
    font-family: var(--tp-ff-body, 'Inter', sans-serif);
}

/* ── Link ──────────────────────────────────────────────── */
.pm-legal-body a {
    color: var(--primary-color, #4A3F3A);
    text-decoration: underline;
    text-decoration-color: var(--secondary-color, #E5C6C6);
    text-underline-offset: 3px;
    transition: color 0.2s, text-decoration-color 0.2s;
}
.pm-legal-body a:hover {
    color: var(--secondary-color, #E5C6C6);
    text-decoration-color: var(--secondary-color, #E5C6C6);
}

/* ── Code (nomi cookie) ────────────────────────────────── */
.pm-legal-body code {
    background: var(--bk-cream, #F3EDE7);
    color: var(--primary-color, #4A3F3A);
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    border: 1px solid var(--bk-border, #E7D7C9);
}

/* ── Box notice (già esistente, override look) ─────────── */
.pm-legal-body .pm-legal-notice {
    background: linear-gradient(135deg, var(--bk-cream, #F3EDE7) 0%, #fff 100%);
    border-left: 3px solid var(--secondary-color, #E5C6C6);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 0 0 36px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--bk-bark, #8B7E78);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .pm-legal-body {
        padding: 36px 28px;
        border-radius: 16px;
    }
    .pm-legal-body h1 {
        font-size: 32px;
    }
    .pm-legal-body h2 {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .pm-legal-page {
        padding: 32px 0 64px;
    }
    .pm-legal-container {
        padding: 0 16px;
    }
    .pm-legal-body {
        padding: 28px 20px;
    }
    .pm-legal-body h1 {
        font-size: 26px;
    }
    .pm-footer-legal {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
}

/* ── FOOTER CONTACT FORM ─────────────────────────────────── */
.pm-fcontact {
    background: #FFF8F0;
    border-radius: 20px;
    padding: 28px 24px 24px;
}
.pm-fcontact-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    color: #3D3D3D;
    margin: 0 0 6px;
    line-height: 1.2;
}
.pm-fcontact-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #7A7A7A;
    line-height: 1.55;
    margin: 0 0 20px;
}
.pm-fcontact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pm-fcontact-field {
    background: #ffffff !important;
    border: 1.5px solid #e8e2d9 !important;
    color: #3D3D3D !important;
    padding: 11px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-family: "Inter", sans-serif !important;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    box-sizing: border-box;
    display: block;
}
.pm-fcontact-field::placeholder {
    color: #b5a99a !important;
    font-style: normal !important;
}
.pm-fcontact-field:focus {
    border-color: #3D3D3D !important;
    box-shadow: 0 0 0 3px rgba(61, 61, 61, 0.08) !important;
}
.pm-fcontact-area {
    resize: none;
    min-height: 80px;
}
.pm-fcontact-send {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent !important;
    color: #3D3D3D !important;
    border: 1.5px solid #ccc5bb !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease !important;
    margin-top: 4px;
    box-shadow: none !important;
    text-transform: none !important;
}
.pm-fcontact-send:hover {
    background: #F4A0B5 !important;
    color: #ffffff !important;
    border-color: #F4A0B5 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 160, 181, 0.3) !important;
}
.pm-fcontact-send svg {
    transition: transform 0.3s ease;
}
.pm-fcontact-send:hover svg {
    transform: translateX(3px);
}
.pm-footer-contact-feedback {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    line-height: 1.4;
}
.pm-footer-contact-feedback--ok {
    background: rgba(109, 191, 158, 0.12);
    color: #4fa880;
    border: 1px solid rgba(109, 191, 158, 0.25);
}
.pm-footer-contact-feedback--error {
    background: rgba(229, 62, 62, 0.08);
    color: #e53e3e;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

/* ── FOOTER PAYMENTS ─────────────────────────────────────── */
.pm-footer-payments {
    display: flex;
    align-items: center;
}
.pm-footer-payments img {
    max-height: 28px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}
.pm-footer-payments img:hover {
    opacity: 1;
}

/* Bottom inner layout a 3 colonne con payments al centro */
.pm-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 600px) {
    .pm-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ─────────────────────────────────────────────────────────
   HEADER STYLE 5 — mega menu con hamburger
   ───────────────────────────────────────────────────────── */

/* Container principale */

/* ─────────────────────────────────────────────────────────
   FLOATING WHATSAPP BUTTON
   ───────────────────────────────────────────────────────── */
.pm-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
}
.pm-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
    color: #fff;
}
.pm-whatsapp-float svg {
    display: block;
}
@media (max-width: 767px) {
    .pm-whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .pm-whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ─────────────────────────────────────────────────────────
   5-COLONNE per la griglia categorie su desktop
   ───────────────────────────────────────────────────────── */
@media (min-width: 1200px) {
    .col-xl-cat5 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* ─────────────────────────────────────────────────────────
   GALLERY PRODOTTO — layout orizzontale (immagine + thumb sotto)
   ───────────────────────────────────────────────────────── */

/* Immagine principale: quadrata, cover per riempire sempre tutta la card */
.bb-product-gallery-horizontal .bb-product-gallery-images {
    background: var(--bk-cream, #F3EDE7);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.bb-product-gallery-horizontal .bb-product-gallery-images .slick-slider,
.bb-product-gallery-horizontal .bb-product-gallery-images .slick-list,
.bb-product-gallery-horizontal .bb-product-gallery-images .slick-track,
.bb-product-gallery-horizontal .bb-product-gallery-images .slick-slide > div {
    height: 100%;
}
.bb-product-gallery-horizontal .bb-product-gallery-images img {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 100%;
    display: block;
}

/* Desktop */
@media (min-width: 768px) {
    .bb-product-gallery-horizontal .bb-product-gallery-images {
        aspect-ratio: 1 / 1;
    }
    /* Strip thumbnails: padding simmetrico, gap tra item */
    .bb-product-gallery-horizontal .bb-product-gallery-thumbnails {
        margin-top: 14px !important;
        padding: 0 38px !important;
    }

    /* Thumbnail singola: più grande, angoli arrotondati */
    .bb-product-gallery-horizontal .bb-product-gallery-thumbnails .slick-slide {
        padding: 0 4px;
        margin-bottom: 0;
    }
    .bb-product-gallery-horizontal .bb-product-gallery-thumbnails .slick-slide img {
        width: 88px !important;
        height: 88px !important;
        border-radius: 8px !important;
        border: 2px solid transparent !important;
        object-fit: cover;
        background: var(--bk-cream, #F3EDE7);
        transition: border-color 0.2s ease, opacity 0.2s ease;
        cursor: pointer;
    }
    .bb-product-gallery-horizontal .bb-product-gallery-thumbnails .slick-slide:hover img {
        border-color: var(--bk-bark, #8B7E78) !important;
        opacity: 0.85;
    }
    .bb-product-gallery-horizontal .bb-product-gallery-thumbnails .slick-current img {
        border-color: var(--primary-color, #4A3F3A) !important;
        opacity: 1 !important;
    }

    /* Frecce thumbnail: ombra più elegante */
    .bb-product-gallery-horizontal .bb-product-gallery-thumbnails .slick-arrow {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
}

/* ─── Checkout: messaggio spedizione extra-EU ─── */
.pm-shipping-extra-eu-msg {
    margin-top: 12px;
    padding: 14px 18px;
    background: var(--bk-cream, #F3EDE7);
    border: 1px solid var(--bk-border, #E7D7C9);
    border-left: 4px solid var(--primary-color, #4A3F3A);
    border-radius: 8px;
    color: var(--bk-taupe, #7A7268);
    font-size: 14px;
    line-height: 1.5;
}
.pm-shipping-extra-eu-msg i {
    color: var(--primary-color, #4A3F3A);
    margin-right: 8px;
}

/* [BonBon Kids] /m² suffix accanto al prezzo per Carta da parati */
.pm-price-unit-suffix {
    font-size: 0.55em;
    font-weight: 500;
    color: var(--bk-taupe, #7A7268);
    margin-left: 4px;
    letter-spacing: 0.3px;
    vertical-align: baseline;
}

/* [BonBon Kids] Prezzo grande in cima al box showroom */
.pm-showroom-only-box {
    background: var(--bk-ivory, #F9F4EF);
    border: 1px solid var(--bk-border, #E7D7C9);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 20px 0;
}
.pm-showroom-only-box .pm-showroom-only-price {
    font-family: var(--tp-ff-heading, 'Cormorant Garamond', serif);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: var(--primary-color, #4A3F3A);
    margin: 0 0 14px;
}
.pm-showroom-only-price-unit {
    font-size: 0.55em;
    font-weight: 500;
    color: var(--bk-taupe, #7A7268);
    margin-left: 4px;
    letter-spacing: 0.3px;
}
.pm-showroom-only-price-unit sup {
    font-size: 0.7em;
    top: -0.4em;
}
.pm-showroom-only-text {
    font-family: var(--tp-ff-body, 'Inter', sans-serif);
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--bk-taupe, #7A7268);
    margin: 0 0 20px;
}
.pm-showroom-only-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pm-showroom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--tp-ff-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.75em 1.5em;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
}
.pm-showroom-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}
.pm-showroom-btn--whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 3px 14px rgba(37,211,102,0.22);
}
.pm-showroom-btn--whatsapp:hover {
    background: #1ebe5a;
    color: #fff;
    box-shadow: 0 5px 20px rgba(37,211,102,0.32);
}
.pm-showroom-btn--email {
    background: var(--primary-color, #4A3F3A);
    color: #fff;
    box-shadow: 0 3px 14px rgba(74,63,58,0.18);
}
.pm-showroom-btn--email:hover {
    background: var(--tp-theme-primary, #3A2E2A);
    color: #fff;
    box-shadow: 0 5px 20px rgba(74,63,58,0.28);
}

/* ============================================================
   PM-WIP — Work in Progress (Projects page)
   ============================================================ */
.pm-wip-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}
.pm-wip-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.pm-wip-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
}
.pm-wip-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(26, 22, 20, 0.35) 0%,
        rgba(26, 22, 20, 0.75) 60%,
        rgba(26, 22, 20, 0.92) 100%
    );
}
.pm-wip-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}
.pm-wip-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 720px;
    padding: 2rem 2rem 6rem;
    color: #fff;
}
.pm-wip-eyebrow {
    display: inline-block;
    font-family: var(--tp-ff-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary-color);
    border: 1px solid rgba(229,198,198,0.4);
    border-radius: 50px;
    padding: 0.35em 1.2em;
    margin-bottom: 2rem;
}
.pm-wip-title {
    font-family: var(--tp-ff-heading);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.75rem;
}
.pm-wip-title em {
    font-style: italic;
    color: var(--secondary-color);
}
.pm-wip-desc {
    font-family: var(--tp-ff-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    max-width: 540px;
    margin: 0 auto 2.25rem;
}
.pm-wip-rule {
    width: 48px;
    height: 1px;
    background: rgba(229,198,198,0.5);
    margin: 0 auto 2.25rem;
}
.pm-wip-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.pm-wip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--tp-ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.85em 2em;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.pm-wip-btn:hover {
    transform: translateY(-2px);
}
.pm-wip-btn-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,211,102,0.28);
}
.pm-wip-btn-wa:hover {
    background: #1ebe5a;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.38);
}
.pm-wip-btn-shop {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
}
.pm-wip-btn-shop:hover {
    background: rgba(255,255,255,0.22);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.pm-wip-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.5;
}
