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

/* ================================================
   FONT
================================================ */
/* GillSansStd è un font locale già presente nel tema — nessun import necessario */

/* ================================================
   VARIABILI GLOBALI
   (usate sia dagli articoli che dalla pagina prodotto)
================================================ */
:root {
    /* — Articoli (originali tue) — */
    --color-bg:           #faf9f7;
    --color-dark:         #1a1a1a;
    --color-mid:          #4a4a4a;
    --color-light:        #9a9a8a;
    --color-accent:       #823D8C;
    --color-accent-light: #f0e6d0;
    --color-border:       #e8e4dc;
    --font-display:       'GillSAnsStd', sans-serif;
    --font-body:          'GillSAnsStd', sans-serif;
    --max-width:          1100px;
    --header-height:      520px;

    /* — Pagina prodotto — */
    --c-bg:        #FAFAF8;
    --c-white:     #FFFFFF;
    --c-ink:       #18181A;
    --c-ink2:      #3A3A3C;
    --c-muted:     #8A8A8E;
    --c-rule:      #E2E2DE;
    --c-accent:    #823D8C;   /* allineato al tuo viola StudioKappa */
    --c-accent-lt: #F3EAF4;
    --c-tag:       #EEF0F5;
    --f-serif:     'GillSansStd', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    --f-sans:      'GillSansStd', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    --r:           2px;
    --transition:  .22s ease;
}


/* ════════════════════════════════════════════════════════════════
   SEZIONE 1 — STILI ARTICOLI (tuoi originali, invariati)
════════════════════════════════════════════════════════════════ */

.single-article * { box-sizing: border-box; }

/* HERO */
.single-hero {
    position: relative;
    width: 100%;
    height: var(--header-height);
    overflow: hidden;
    background: var(--color-dark);
}
.single-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.single-hero:hover .single-hero__image { transform: scale(1.0); }
.single-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.85) 100%);
}
.single-hero__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 48px 40px 44px;
    max-width: calc(var(--max-width) + 80px);
    margin: 0 auto;
}
.single-hero__category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    background: #823D8C;
    border: 1px solid #823D8C;
    padding: 5px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    text-decoration: none;
    transition: background 0.2s;
}
.single-hero__category:hover { background: #ffffff; color: #823D8C; }
.single-hero__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.single-hero__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.single-hero__author-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); object-fit: cover; }
.single-hero__meta-text { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.4; }
.single-hero__meta-text strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.single-hero__meta-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.25); }
.single-hero--no-image { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%); height: 360px; }

/* WRAPPER ARTICOLO */
.single-article { background: var(--color-bg); min-height: 100vh; }
.single-article__container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* BARRA DECORATIVA */
.single-article__bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #823D8C, var(--color-accent));
    background-size: 200% 100%;
    animation: shimmer 3s ease infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* INTRO */
.single-article__intro { padding: 52px 0 0; border-bottom: 1px solid var(--color-border); margin-bottom: 48px; padding-bottom: 36px; }
.single-article__excerpt { font-family: var(--font-body); font-size: 20px; font-style: italic; font-weight: 300; color: var(--color-mid); line-height: 1.65; border-left: 3px solid var(--color-accent); padding-left: 20px; margin: 0; }

/* IMMAGINE IN EVIDENZA */
.single-article__featured-image { margin: 0 0 56px; }
.single-article__featured-image figure { margin: 0; position: relative; }
.single-article__featured-image img { width: 100%; height: auto; max-height: 500px; object-fit: cover; display: block; border-radius: 3px; box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06); }
.single-article__featured-image figcaption { font-family: var(--font-body); font-size: 13px; font-style: italic; color: var(--color-light); text-align: center; margin-top: 12px; padding: 0 16px; line-height: 1.5; }
.single-article__featured-image::before { content: ''; display: block; margin: 0 auto 28px; }

/* CONTENUTO */
.single-article__content { font-family: var(--font-body); font-size: 20px; line-height: 1.8; color: var(--color-dark); }
.single-article__content p { margin: 0 0 1.2em; }
.single-article__content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--color-dark); margin: 2em 0 0.6em; line-height: 1.25; letter-spacing: -0.01em; }
.single-article__content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--color-dark); margin: 1.8em 0 0.5em; }
.single-article__content h4 { font-family: var(--font-body); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-mid); margin: 1.6em 0 0.5em; }
.single-article__content blockquote { margin: 2em 0; padding: 24px 28px; background: var(--color-accent-light); border-left: 4px solid var(--color-accent); border-radius: 0 4px 4px 0; }
.single-article__content blockquote p { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--color-dark); margin: 0; line-height: 1.55; }
.single-article__content a { color: var(--color-accent); text-decoration-color: var(--color-dark); transition: color 0.2s; }
.single-article__content a:hover { color: var(--color-dark); }
.single-article__content img { max-width: 100%; height: auto; border-radius: 3px; margin: 1em 0; }
.single-article__content ul, .single-article__content ol { padding-left: 1.5em; margin: 0 0 1.6em; }
.single-article__content li { margin-bottom: 0.4em; }
.single-article__content strong { font-weight: 600; color: var(--color-dark); }

/* FOOTER ARTICOLO */
.single-article__footer { margin-top: 64px; padding: 40px 0; border-top: 1px solid var(--color-border); }
.single-article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.single-article__tag { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mid); background: var(--color-border); padding: 5px 12px; border-radius: 2px; text-decoration: none; transition: all 0.2s; }
.single-article__tag:hover { background: var(--color-accent); color: #fff; }
.single-article__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.single-article__nav-item { padding: 20px; background: #fff; border: 1px solid #823D8C; border-radius: 4px; text-decoration: none; transition: all 0.25s; display: block; }
.single-article__nav-item:hover { border-color: #ffffff; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }
.single-article__nav-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 6px; display: block; }
.single-article__nav-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--color-dark); line-height: 1.3; }
.single-article__nav-item--next { text-align: right; }
.single-article__comments { margin-top: 16px; padding-bottom: 64px; }

/* RESPONSIVE ARTICOLI */
@media (max-width: 768px) {
    :root { --header-height: 380px; }
    .single-hero__content { padding: 32px 20px 28px; }
    .single-hero__title { font-size: 26px; }
    .single-article__container { padding: 0 16px; }
    .single-article__intro { padding: 36px 0 28px; }
    .single-article__excerpt { font-size: 17px; }
    .single-article__content { font-size: 17px; }
    .single-article__nav { grid-template-columns: 1fr; }
    .single-article__nav-item--next { text-align: left; }
}
@media (max-width: 480px) {
    :root { --header-height: 300px; }
    .single-hero__title { font-size: 22px; }
    .single-article__content { font-size: 16px; }
}


/* ════════════════════════════════════════════════════════════════
   SEZIONE 2 — PAGINA PRODOTTO WOOCOMMERCE
════════════════════════════════════════════════════════════════ */

.hello-child-single-product .site-main { background: var(--c-bg); }
.hello-child-single-product .entry-content,
.hello-child-single-product .elementor-section-wrap { max-width: 100%; padding: 0; margin: 0; }

/* BREADCRUMB */
.sk-breadcrumb { border-bottom: 1px solid var(--c-rule); padding: 13px 60px; font-family: var(--f-sans); font-size: 11px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); background: var(--c-white); }
.sk-breadcrumb a { color: var(--c-muted); text-decoration: none; transition: color var(--transition); }
.sk-breadcrumb a:hover { color: var(--c-accent); }
.sk-breadcrumb .sep { margin: 0 8px; opacity: .4; }
.sk-breadcrumb .current { color: var(--c-ink2); }

/* LAYOUT */
.sk-product { max-width: 1240px; margin: 0 auto; padding: 64px 60px 80px; display: grid; grid-template-columns: 52% 1fr; gap: 80px; align-items: start; font-family: var(--f-sans); }

/* GALLERIA */
.sk-gallery { position: sticky; top: 24px; }
.sk-gallery__main { background: var(--c-white); border: 1px solid var(--c-rule); overflow: hidden; position: relative; aspect-ratio: 4 / 5; }
.sk-gallery__main a { display: block; width: 100%; height: 100%; }
.sk-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.sk-gallery__main:hover img { transform: scale(1.03); }
.sk-badge-sale, .sk-badge-new, .sk-badge-featured { position: absolute; top: 20px; left: 20px; font-family: var(--f-sans); font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; z-index: 3; }
.sk-badge-sale     { background: var(--c-accent); color: #fff; }
.sk-badge-new      { background: var(--c-ink); color: #fff; }
.sk-badge-featured { background: var(--c-tag); color: var(--c-ink); border: 1px solid var(--c-rule); }
.sk-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; }
.sk-gallery__thumb { flex: 1; aspect-ratio: 1/1; max-width: 80px; background: var(--c-white); border: 1px solid var(--c-rule); overflow: hidden; cursor: pointer; transition: border-color var(--transition); padding: 0; }
.sk-gallery__thumb.active, .sk-gallery__thumb:hover { border-color: var(--c-ink); }
.sk-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* INFO PRODOTTO */
.sk-info { padding-top: 4px; }
.sk-info__category { font-family: var(--f-sans); font-size: 15px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.sk-info__category::after { content: ''; flex: 1; height: 1px; background: var(--c-rule); max-width: 48px; }
.sk-info__title { font-family: var(--f-serif); font-size: 38px; font-weight: 400; line-height: 1.18; color: var(--c-ink); margin-bottom: 6px; letter-spacing: -.01em; }
.sk-info__author { font-family: var(--f-sans); font-size: 13px; color: var(--c-muted); margin-bottom: 22px; font-style: italic; }
.sk-rule { border: none; border-top: 1px solid var(--c-rule); margin: 22px 0; }

/* RATING */
.sk-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-family: var(--f-sans); }
.sk-rating .stars { color: var(--c-accent); font-size: 13px; letter-spacing: 3px; }
.sk-rating .count { font-size: 12px; color: var(--c-muted); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.sk-rating .in-stock { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #3A7D44; margin-left: auto; }
.sk-rating .out-stock { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--c-accent); margin-left: auto; }

/* PREZZO */
.sk-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.sk-price del { font-family: var(--f-sans); font-size: 15px; color: var(--c-muted); font-weight: 300; }
.sk-price ins { font-family: var(--f-serif); font-size: 34px; font-weight: 400; color: var(--c-ink); text-decoration: none; letter-spacing: -.02em; }
.sk-price .saving { font-family: var(--f-sans); font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--c-accent); background: var(--c-accent-lt); padding: 3px 10px; border-radius: 20px; }

/* DESCRIZIONE BREVE */
.sk-info__short-desc { font-family: var(--f-sans); font-size: 15px; line-height: 1.75; color: var(--c-ink2); font-weight: 300; margin-bottom: 28px; padding-left: 18px; border-left: 2px solid var(--c-accent); }
.sk-info__short-desc p { margin: 0 0 8px; }
.sk-info__short-desc p:last-child { margin: 0; }

/* COUNTDOWN */
.sk-countdown { background: var(--c-ink); padding: 14px 20px; margin-bottom: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sk-countdown__label { font-family: var(--f-sans); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); white-space: nowrap; }
.sk-countdown__units { display: flex; align-items: center; gap: 4px; }
.sk-countdown__unit { text-align: center; }
.sk-countdown__num { display: block; font-family: var(--f-serif); font-size: 22px; color: #fff; min-width: 38px; text-align: center; line-height: 1; }
.sk-countdown__sep { font-family: var(--f-serif); font-size: 20px; color: var(--c-accent); padding: 0 2px; margin-bottom: 12px; line-height: 1; }
.sk-countdown__sub { display: block; font-family: var(--f-sans); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 2px; text-align: center; }

/* STOCK BAR */
.sk-stock-bar { margin-bottom: 22px; }
.sk-stock-bar__labels { display: flex; justify-content: space-between; font-family: var(--f-sans); font-size: 11px; color: var(--c-muted); margin-bottom: 7px; letter-spacing: .04em; }
.sk-stock-bar__labels strong { color: var(--c-accent); font-weight: 500; }
.sk-stock-bar__track { height: 3px; background: var(--c-rule); overflow: hidden; }
.sk-stock-bar__fill { height: 100%; background: var(--c-accent); transition: width .6s ease; }

/* VARIAZIONI */
.sk-info .variations_form table.variations { width: 100%; border-collapse: collapse; margin-bottom: 4px; }
.sk-info .variations_form .variations td, .sk-info .variations_form .variations th { padding: 0 0 14px 0; text-align: left; vertical-align: middle; border: none; background: none; }
.sk-info .variations_form .label label { font-family: var(--f-sans); font-size: 15px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--c-ink); }
.sk-info .variations_form .value select { width: 100%; border: 1px solid var(--c-rule); border-radius: var(--r); padding: 10px 14px; font-family: var(--f-sans); font-size: 18px; color: var(--c-ink); background: var(--c-white); appearance: auto; transition: border-color var(--transition); }
.sk-info .variations_form .value select:focus { outline: none; border-color: var(--c-ink); }
.sk-info .reset_variations { font-family: var(--f-sans); font-size: 15px; color: var(--c-muted); text-decoration: underline; text-underline-offset: 2px; }

/* QTY + CARRELLO */
.sk-add-row { display: flex; gap: 10px; margin-bottom: 12px; align-items: stretch; }
.sk-info .quantity { display: flex; align-items: center; border: 1px solid var(--c-rule); background: var(--c-white); transition: border-color var(--transition); }
.sk-info .quantity:focus-within { border-color: var(--c-ink); }
.sk-info .quantity input[type="number"] { width: 52px; height: 52px; border: none; text-align: center; font-family: var(--f-sans); font-size: 16px; color: var(--c-ink); background: transparent; outline: none; -moz-appearance: textfield; }
.sk-info .quantity input::-webkit-outer-spin-button, .sk-info .quantity input::-webkit-inner-spin-button { -webkit-appearance: none; }
.sk-info button.single_add_to_cart_button, .sk-info .single_add_to_cart_button { flex: 1; height: 52px; background: var(--c-ink); color: var(--c-white); border: none; font-family: var(--f-sans); font-size: 18px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: background var(--transition); padding: 0 28px; }
.sk-info button.single_add_to_cart_button:hover { background: var(--c-accent); }
.sk-btn-wishlist { width: 52px; height: 52px; border: 1px solid var(--c-rule); background: transparent; font-size: 19px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); color: var(--c-muted); }
.sk-btn-wishlist:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* TRUST BADGE */
.sk-trust { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--c-rule); margin-bottom: 28px; }
.sk-trust__item { padding: 14px 8px; text-align: center; border-right: 1px solid var(--c-rule); font-family: var(--f-sans); font-size: 10px; color: var(--c-muted); line-height: 1.5; }
.sk-trust__item:last-child { border-right: none; }
.sk-trust__item .icon { font-size: 18px; display: block; margin-bottom: 5px; filter: grayscale(1); opacity: .7; }
.sk-trust__item strong { display: block; color: var(--c-ink2); font-size: 11px; font-weight: 500; margin-bottom: 1px; }

/* META */
.sk-meta { font-family: var(--f-sans); font-size: 15px; color: var(--c-muted); line-height: 2; border-top: 1px solid var(--c-rule); padding-top: 18px; }
.sk-meta strong { color: var(--c-ink2); font-weight: 500; }
.sk-meta a { color: var(--c-ink2); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.sk-meta a:hover { color: var(--c-accent); }
.sk-share { display: flex; gap: 16px; align-items: center; margin-top: 12px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); }
.sk-share a { font-size: 16px; color: var(--c-muted); text-decoration: none; transition: color var(--transition); }
.sk-share a:hover { color: var(--c-accent); }

/* TAB */
.sk-tabs-wrapper { max-width: 1240px; margin: 0 auto; padding: 0 60px 80px; font-family: var(--f-sans); border-top: 1px solid var(--c-rule); }
.sk-tabs-wrapper .woocommerce-tabs ul.tabs { display: flex; list-style: none; border-bottom: 1px solid var(--c-rule); margin: 0 0 44px; padding: 0; gap: 0; background: none; }
.sk-tabs-wrapper .woocommerce-tabs ul.tabs::before { display: none !important; }
.sk-tabs-wrapper .woocommerce-tabs ul.tabs li { margin: 0 !important; padding: 0 !important; border: none !important; background: none !important; border-radius: 0 !important; }
.sk-tabs-wrapper .woocommerce-tabs ul.tabs li::before, .sk-tabs-wrapper .woocommerce-tabs ul.tabs li::after { display: none !important; }
.sk-tabs-wrapper .woocommerce-tabs ul.tabs li a { display: block; padding: 18px 32px; font-family: var(--f-sans); font-size: 16px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #823d8c; text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--transition); background: none !important; }
.sk-tabs-wrapper .woocommerce-tabs ul.tabs li.active a { color: var(--c-ink); border-bottom-color: var(--c-ink); }
.sk-tabs-wrapper .woocommerce-tabs ul.tabs li a:hover { color: var(--c-ink); }
.sk-tabs-wrapper .woocommerce-tabs .woocommerce-Tabs-panel { padding: 0; border: none; background: none; }
.sk-tabs-wrapper .woocommerce-tabs h2 { font-family: var(--f-serif); font-size: 26px; font-weight: 400; color: var(--c-ink); margin-bottom: 20px; letter-spacing: -.01em; }
.sk-tabs-wrapper .woocommerce-tabs p, .sk-tabs-wrapper .woocommerce-tabs li { font-size: 18px; line-height: 1.8; color: var(--c-ink2); font-weight: 300; }
.sk-tabs-wrapper .woocommerce-product-attributes { width: 100%; border-collapse: collapse; font-family: var(--f-sans); }
.sk-tabs-wrapper .woocommerce-product-attributes tr { border-bottom: 1px solid var(--c-rule); }
.sk-tabs-wrapper .woocommerce-product-attributes th, .sk-tabs-wrapper .woocommerce-product-attributes td { padding: 14px 0; font-size: 14px; text-align: left; background: none !important; border: none; }
.sk-tabs-wrapper .woocommerce-product-attributes th { font-weight: 500; color: var(--c-ink); width: 30%; letter-spacing: .03em; }
.sk-tabs-wrapper .woocommerce-product-attributes td { color: var(--c-muted); font-weight: 300; }
.sk-tabs-wrapper #reviews #comments ol.commentlist { list-style: none; padding: 0; margin: 0; }
.sk-tabs-wrapper #reviews #comments ol.commentlist li { border-bottom: 1px solid var(--c-rule); padding: 28px 0; display: grid; grid-template-columns: auto 1fr; gap: 20px; background: none !important; }
.sk-tabs-wrapper #reviews #comments ol.commentlist li:last-child { border-bottom: none; }
.sk-tabs-wrapper #reviews .comment-text { margin: 0; }
.sk-tabs-wrapper #reviews .star-rating { color: var(--c-accent); }
.sk-tabs-wrapper #reviews #review_form_wrapper { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--c-rule); }
.sk-tabs-wrapper #reviews #review_form input, .sk-tabs-wrapper #reviews #review_form textarea { border: 1px solid var(--c-rule); border-radius: var(--r); padding: 12px 16px; font-family: var(--f-sans); font-size: 14px; width: 100%; transition: border-color var(--transition); }
.sk-tabs-wrapper #reviews #review_form input:focus, .sk-tabs-wrapper #reviews #review_form textarea:focus { outline: none; border-color: var(--c-ink); }
.sk-tabs-wrapper #reviews #review_form #submit { background: var(--c-ink); color: #fff; border: none; padding: 14px 32px; font-family: var(--f-sans); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background var(--transition); width: auto; }
.sk-tabs-wrapper #reviews #review_form #submit:hover { background: var(--c-accent); }

/* PRODOTTI CORRELATI */
.sk-related { border-top: 1px solid var(--c-rule); background: var(--c-white); padding: 64px 60px 80px; }
.sk-related__inner { max-width: 1240px; margin: 0 auto; }
.sk-related__header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--c-rule); }
.sk-related__title { font-family: var(--f-serif); font-size: 28px; font-weight: 400; color: var(--c-ink); letter-spacing: -.01em; }
.sk-related__all { font-family: var(--f-sans); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); text-decoration: none; transition: color var(--transition); }
.sk-related__all:hover { color: var(--c-accent); }
.sk-related ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; list-style: none; margin: 0; padding: 0; }
.sk-related ul.products li.product { position: relative; background: var(--c-bg); transition: transform var(--transition); }
.sk-related ul.products li.product:hover { transform: translateY(-3px); }
.sk-related ul.products li.product a.woocommerce-loop-product__link { display: block; }
.sk-related ul.products li.product img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; border: 1px solid var(--c-rule); transition: opacity var(--transition); }
.sk-related ul.products li.product:hover img { opacity: .88; }
.sk-related ul.products li.product .woocommerce-loop-product__title { font-family: var(--f-serif); font-size: 15px; font-weight: 400; color: var(--c-ink); padding: 14px 0 4px; line-height: 1.4; }
.sk-related ul.products li.product .price { font-family: var(--f-sans); font-size: 13px; color: var(--c-muted); padding: 0; }
.sk-related ul.products li.product .price ins { text-decoration: none; color: var(--c-ink2); font-weight: 500; }
.sk-related ul.products li.product .star-rating { color: var(--c-accent); font-size: 11px; margin: 2px 0; }
.sk-related ul.products li.product .button { position: absolute; top: 12px; right: 12px; background: var(--c-white); color: var(--c-ink); border: 1px solid var(--c-rule); font-family: var(--f-sans); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 7px 12px; text-decoration: none; opacity: 0; transform: translateY(-4px); transition: all var(--transition); }
.sk-related ul.products li.product:hover .button { opacity: 1; transform: translateY(0); }
.sk-related ul.products li.product .button:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* RESPONSIVE PRODOTTO */
@media (max-width: 1024px) {
    .sk-product { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px 60px; }
    .sk-gallery { position: static; }
    .sk-gallery__main { aspect-ratio: 3/2; }
    .sk-breadcrumb { padding: 12px 32px; }
    .sk-tabs-wrapper { padding: 0 32px 60px; }
    .sk-related { padding: 48px 32px 60px; }
    .sk-related ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .sk-product { padding: 28px 20px 48px; gap: 28px; }
    .sk-info__title { font-size: 28px; }
    .sk-price ins { font-size: 26px; }
    .sk-trust { grid-template-columns: repeat(2, 1fr); }
    .sk-trust__item:nth-child(2) { border-right: none; }
    .sk-trust__item:nth-child(3), .sk-trust__item:nth-child(4) { border-top: 1px solid var(--c-rule); }
    .sk-breadcrumb { padding: 11px 20px; }
    .sk-tabs-wrapper { padding: 0 20px 48px; }
    .sk-related { padding: 40px 20px 48px; }
    .sk-related ul.products { gap: 16px; }
    .sk-tabs-wrapper .woocommerce-tabs ul.tabs li a { padding: 14px 18px; }
    .sk-add-row { flex-wrap: wrap; }
    .sk-info button.single_add_to_cart_button { min-width: 100%; }
}
/* griglia prodotti woocommerce */
.eael-product-wrap img.attachment-woocommerce_thumbnail {
  width: 100% !important;
  height: 430px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}
.buttonCart .eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before {
padding-right: 0px !important;
}

/* ── Wishlist Page ── */
.sk-wishlist-page { padding: 20px 0; }

.sk-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.sk-wl-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #e8e8ec;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .22s, transform .22s;
}
.sk-wl-card:hover {
    box-shadow: 0 8px 32px rgba(130,61,140,.12);
    transform: translateY(-2px);
}

.sk-wl-remove {
    position: absolute;
    top: 10px; right: 10px;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e8e8ec;
    background: rgba(255,255,255,.9);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 2;
    transition: all .2s;
}
.sk-wl-remove:hover {
    background: #fee2e2;
    border-color: #ef4444;
    stroke: #ef4444;
}

.sk-wl-img { display: block; aspect-ratio: 1; overflow: hidden; }
.sk-wl-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sk-wl-body { padding: 14px; }

.sk-wl-name {
    display: block;
    font-size: .9rem; font-weight: 600;
    color: #111118; text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.3;
}
.sk-wl-name:hover { color: #823d8c; }

.sk-wl-price {
    display: block;
    font-size: 1rem; font-weight: 700;
    color: #823d8c;
    margin-bottom: 12px;
}

.sk-wl-actions { display: flex; flex-direction: column; gap: 8px; }

.sk-wl-btn {
    display: block; text-align: center;
    padding: 9px 14px;
    border-radius: 9px;
    font-size: .82rem; font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}
.sk-wl-btn--cart {
    background: #823d8c; color: #fff;
}
.sk-wl-btn--cart:hover { background: #5e2a66; color: #fff; }

.sk-wl-btn--view {
    border: 1.5px solid #823d8c;
    color: #823d8c; background: transparent;
}
.sk-wl-btn--view:hover { background: #f3eaf5; }

.sk-wl-btn--out {
    background: #f1f1f4; color: #999;
    font-size: .82rem; font-weight: 600;
    text-align: center; padding: 9px 14px;
    border-radius: 9px;
}

.sk-wishlist-empty {
    font-size: .95rem; color: #888;
    grid-column: 1 / -1;
}
.sk-wishlist-empty a { color: #823d8c; font-weight: 600; text-decoration: none; }

/* ── Badge contatore wishlist ── */
.sk-wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: #823d8c;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}