/* v:1776252523 lang-switch */
/* =================================================================
   VENTRELLA GIOIELLI - Luxury Theme
   Clone: giovanniraspini.com
   Zero frameworks. Zero page builders. Pure CSS.
   ================================================================= */

:root {
    --gold: #C9A96E;
    --dark: #1a1a1a;
    --light: #f6f6f6;
    --grey: #515151;
    --border: #e2e2e2;
    --white: #ffffff;
    --sale: #f97367;
    --font-h: 'Cormorant Garamond', Georgia, serif;
    --font-b: 'Jost', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-b);
    font-weight: 300;
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-h);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.25;
}

.v-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =================================================================
   ANNOUNCEMENT BAR
   ================================================================= */
.v-topbar {
    background: #000;
    color: #fff;
    padding: 9px 20px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.v-topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.v-topbar-msg { text-align: center; }
.v-topbar-spacer { display: block; }
.v-lang-switch {
    display: flex;
    gap: 2px;
    justify-self: start;
    align-items: center;
}
.v-lang-link {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    padding: 2px 7px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}
.v-lang-link + .v-lang-link { border-left: 1px solid rgba(255,255,255,.25); }
.v-lang-link:hover { color: #fff; }
.v-lang-link.is-active { color: #fff; }
@media (max-width: 640px) {
    .v-topbar-inner { grid-template-columns: auto 1fr; }
    .v-topbar-spacer { display: none; }
    .v-topbar-msg { font-size: 9px; text-align: right; }
}

/* =================================================================
   HEADER
   ================================================================= */
/* Topbar in normal flow (scrolls away). Header sticky below it. */
.v-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.admin-bar .v-header { top: 32px; }

.admin-bar .v-header { top: 32px; }

.v-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.v-header-left,
.v-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 100px;
}

.v-header-right { justify-content: flex-end; }
.v-header-center { flex: 1; text-align: center; }

/* Logo: proportional like Raspini */
.v-logo img,
.v-logo .v-logo-img {
    max-height: 50px;
    width: auto;
    display: inline-block;
}

/* Hide WP default custom-logo-link (we render logo manually) */
.v-header-center .custom-logo-link { display: none; }

.v-search-toggle,
.v-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 4px;
    display: flex;
    align-items: center;
}

.v-icon-link {
    color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}
.v-icon-link:hover { color: var(--gold); }

.v-cart-count {
    position: absolute;
    top: -5px;
    right: -7px;
    background: var(--dark);
    color: var(--white);
    font-size: 8px;
    font-weight: 600;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-hamburger { display: none; }
.v-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--dark);
    margin: 4px 0;
    transition: all 0.3s;
}

/* =================================================================
   NAVIGATION
   ================================================================= */
.v-nav {
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.v-menu {
    display: inline-flex;
    justify-content: center;
    gap: 0;
    position: relative;
}

.v-menu-item {
    position: relative;
}

/* Mega parent: static so .v-mega positions relative to .v-menu (starts under HOME,
   spans the full width up to the last menu item) */
.v-menu-item.v-mega-parent {
    position: static;
}

.v-menu-item > a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    transition: color 0.3s;
    background: none;
}

.v-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.v-menu-item > a:hover::after,
.v-menu-item:hover > a::after {
    transform: scaleX(1);
}

.v-menu-item > a {
    position: relative;
}

.v-menu-item > a:hover,
.v-menu-item:hover > a {
    color: var(--dark);
}

/* Current item - subtle underline */
.v-menu-item.current-menu-item > a,
.v-menu-item.current_page_item > a {
    color: var(--dark);
    background: none;
    font-weight: 600;
}

.v-menu-item.current-menu-item > a::after,
.v-menu-item.current_page_item > a::after {
    transform: scaleX(1);
}

/* =================================================================
   MEGA MENU (full-width like Raspini)
   ================================================================= */
/* The .v-menu is the flex row of menu items — we use it as width reference */
.v-menu {
    position: relative;
}

/* Mega menu: panel opens DIRECTLY under the top-level item.
   Full-width white background achieved via ::before that bleeds to the viewport. */
/* .v-mega is full-viewport width (background).
   Content inside is padded to start at HOME position via CSS var --v-menu-left
   set by a tiny JS snippet in header.php. */
.v-mega {
    position: absolute;
    top: 100%;
    left: calc(var(--v-menu-left, 0px) * -1);
    width: 100vw;
    padding: 14px 0 26px;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}

.v-mega-parent:hover > .v-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v-mega-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    /* Content starts at HOME position, extends to viewport right with some breathing room */
    padding-left: var(--v-menu-left, 20px);
    padding-right: 40px;
}

/* Links area (left column, fixed narrow) */
.v-mega-links {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex: 0 0 auto;
}

.v-mega-col {
    flex: 0 0 auto;
    min-width: 150px;
}

.v-mega-col-title {
    display: block;
    font-family: var(--font-b);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.v-mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v-mega-col ul li { margin: 0; }

.v-mega-col ul li a {
    display: block;
    padding: 6px 0;
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 300;
    color: var(--grey);
    text-transform: none;
    text-align: left;
    letter-spacing: 0;
    line-height: 1.5;
    transition: color 0.2s, padding-left 0.2s;
}

.v-mega-col ul li a:hover {
    color: var(--dark);
    padding-left: 4px;
}

/* Horizontal flex row: cards side by side, equal width, no wrap */
.v-mega-products {
    display: flex;
    gap: 25px;
    flex: 1 1 auto;
    align-items: stretch;
    min-width: 0;
}
.v-mega-products > * {
    flex: 1 1 0;
    min-width: 0;
    max-width: 260px;
}

/* Mega menu product cards — match shop grid card style */
.v-mega-product-card {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border, #e5e2dd);
    background: var(--white, #fff);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}
.v-mega-product-card:hover {
    border-color: #ccc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Image wrapper for hover swap */
.v-mega-product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #fff;
    flex: 0 0 auto;
}
.v-mega-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease, transform 0.5s ease;
}
.v-mega-product-card:hover .v-mega-img-main { transform: scale(1.04); }
.v-mega-product-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 10px 14px;
}

.v-mega-product-img .v-mega-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.v-mega-product-card:hover .v-mega-img-hover {
    opacity: 1;
}

.v-mega-product-card:hover .v-mega-img-main {
    opacity: 0;
}

.v-mega-product-name {
    display: block;
    font-family: var(--font-b);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    padding: 0 0 6px;
    line-height: 1.4;
}
.v-mega-product-price {
    display: block;
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 400;
    color: var(--grey);
    padding: 0;
}
.v-mega-product-price bdi,
.v-mega-product-price .amount { color: var(--grey); }

/* Black CTA bar like shop cards — stays at bottom via flex column */
.v-mega-product-cta {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 12px 10px;
    background: var(--dark, #1a1a1a);
    color: var(--white, #fff) !important;
    font-family: var(--font-b);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s;
    border-top: 1px solid var(--border, #e5e2dd);
}
.v-mega-product-card:hover .v-mega-product-cta { background: #333; }

/* Gioielli / Oggettistica / Accessori: product cards 20% smaller
   (Azienda categories unchanged — v-mega-cats exempt) */
.v-mega-products:not(.v-mega-cats) {
    gap: 20px;
}
.v-mega-products:not(.v-mega-cats) > * {
    max-width: 208px;
}
.v-mega-products:not(.v-mega-cats) .v-mega-product-body { display: none !important; }
.v-mega-products:not(.v-mega-cats) .v-mega-product-cta {
    padding: 10px 8px;
    font-size: 9px;
    letter-spacing: 0.18em;
}

/* Azienda categories: 3 columns x 2 rows grid (compact) */
.v-mega-cats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 22px;
    align-content: start;
}
.v-mega-cats > .v-mega-product-card {
    flex: none;
    max-width: none;
    width: 100%;
}
.v-mega-cats .v-mega-product-img {
    aspect-ratio: 16 / 10;
}
.v-mega-cats .v-mega-product-card .v-mega-product-name {
    font-size: 13px;
    padding: 8px 6px 4px;
    font-weight: 500;
}
/* Azienda categories: no black CTA bar, no border */
.v-mega-cats .v-mega-product-cta { display: none !important; }
.v-mega-cats .v-mega-product-card { border: none !important; box-shadow: none !important; }
.v-mega-cats .v-mega-product-card:hover { box-shadow: none !important; }

/* =================================================================
   SIMPLE DROPDOWN (Oggettistica, Accessori)
   ================================================================= */
.v-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s ease;
    z-index: 100;
}

.v-menu-item:hover > .v-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v-dropdown li a {
    display: block;
    padding: 7px 22px;
    font-size: 13px;
    font-weight: 400;
    color: var(--grey);
    transition: all 0.2s;
}

.v-dropdown li a:hover {
    color: var(--dark);
    background: var(--light);
}

/* Nested dropdown (Chi Siamo > Showroom > ...) */
.v-dropdown-parent { position: relative; }

.v-dropdown-parent > a .v-chevron {
    float: right;
    font-size: 16px;
    line-height: 1;
    color: var(--grey);
    transition: transform 0.2s;
}

.v-dropdown-sub {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(4px);
    transition: all 0.2s ease;
    z-index: 101;
}

.v-dropdown-parent:hover > .v-dropdown-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.v-dropdown-sub li a {
    display: block;
    padding: 7px 22px;
    font-size: 13px;
    font-weight: 400;
    color: var(--grey);
    transition: all 0.2s;
}

.v-dropdown-sub li a:hover {
    color: var(--dark);
    background: var(--light);
}

/* =================================================================
   HERO
   ================================================================= */
.v-hero {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
@media (max-width: 980px) {
    .v-hero { background-attachment: scroll; }
}

.v-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 40%, transparent 100%);
}

.v-hero-content {
    position: relative;
    z-index: 2;
    padding: 55px 60px;
    max-width: 620px;
}

.v-hero-kicker {
    font-family: var(--font-b);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.v-hero h1 {
    font-family: var(--font-h);
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.v-hero-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* =================================================================
   BUTTONS
   ================================================================= */
.v-btn {
    display: inline-block;
    font-family: var(--font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 35px;
    transition: all 0.3s;
    cursor: pointer;
}

.v-btn-outline {
    border: 1px solid var(--dark);
    color: var(--dark);
    background: transparent;
}
.v-btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.v-btn-outline-white {
    border: 1px solid rgba(255,255,255,0.8);
    color: var(--white);
    background: transparent;
}
.v-btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
}

/* =================================================================
   SECTIONS
   ================================================================= */
.v-section { padding: 45px 0 70px; }
.v-hero + .v-section { padding-top: 35px; }
.v-section-alt { background: var(--light); }
.v-text-center { text-align: center; }

.v-section-title {
    font-family: var(--font-h);
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center;
    color: var(--dark);
    margin-bottom: 6px;
}

.v-section-subtitle {
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    text-align: center;
    margin-bottom: 40px;
}

.v-section-cta {
    text-align: center;
    margin-top: 35px;
}

/* =================================================================
   HERITAGE BANNER (image + text side by side, Raspini style)
   ================================================================= */
.v-heritage-banner { padding: 0; }

.v-heritage-banner .v-container { max-width: 100%; padding: 0; }

.v-heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.v-heritage-img {
    overflow: hidden;
}

.v-heritage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-heritage-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    background: #f8f7f4;
}

.v-heritage-kicker {
    font-family: var(--font-b);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.v-heritage-text-block h2 {
    font-family: var(--font-h);
    font-size: 32px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.v-heritage-text-block p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--grey);
    margin-bottom: 28px;
}

/* =================================================================
   NEWSLETTER
   ================================================================= */
.v-section-newsletter {
    background: var(--dark);
    padding: 70px 0;
}

.v-section-newsletter .v-section-title {
    color: var(--white);
}

.v-newsletter-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.v-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
}

.v-newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    font-family: var(--font-b);
    font-size: 13px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}

.v-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.v-newsletter-input:focus { border-color: var(--gold); }

.v-btn-dark {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--white);
    padding: 14px 28px;
    font-family: var(--font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.v-btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* =================================================================
   CATEGORY GRID
   ================================================================= */
.v-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.v-cat-card { display: block; text-align: center; }

.v-cat-img {
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--white);
}

.v-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v-cat-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e6e1 0%, #d5d0c8 100%);
}

.v-cat-card:hover .v-cat-img img { transform: scale(1.05); }

.v-cat-name {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    transition: color 0.3s;
}

.v-cat-card:hover .v-cat-name { color: var(--gold); }

/* =================================================================
   PRODUCT CARDS (WooCommerce)
   Raspini: image + name + price, clean minimal card
   ================================================================= */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    /* Force uniform card height via flex column */
    display: flex !important;
    flex-direction: column;
}

.woocommerce ul.products li.product:hover {
    border-color: #ccc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Main link wrapper fills available space so button sticks to bottom */
.woocommerce ul.products li.product > a:first-child {
    display: flex !important;
    flex-direction: column;
    flex: 1 1 auto;
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    background: var(--light);
    margin: 0 !important;
    padding: 0 !important;
    transition: transform 0.5s ease;
    display: block;
    flex: 0 0 auto;
}

.woocommerce ul.products li.product:hover > a > img {
    transform: scale(1.04);
}

/* Second image hover */
.woocommerce ul.products li.product .v-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.woocommerce ul.products li.product:hover .v-hover-img { opacity: 1; }

/* Product title — min-height so 1-line and 2-line titles align evenly */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    font-family: var(--font-b) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    padding: 15px 12px 5px;
    margin: 0;
    line-height: 1.4;
    min-height: calc(2 * 1.4em + 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price — pushed to the bottom of the clickable wrapper so everything aligns */
.woocommerce ul.products li.product .price {
    font-family: var(--font-b);
    font-size: 13px;
    font-weight: 400;
    color: var(--grey);
    padding: 0 12px 16px;
    margin-top: auto;
}

/* Add to cart - black bar at bottom */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product a.added_to_cart {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 14px 15px !important;
    background: var(--dark) !important;
    color: var(--white) !important;
    border: none !important;
    border-top: 1px solid var(--border) !important;
    border-radius: 0 !important;
    font-family: var(--font-b);
    font-size: 10px !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.woocommerce ul.products li.product .button:hover { background: #333 !important; }

/* Sale badge */
.woocommerce ul.products li.product .onsale {
    background: var(--sale) !important;
    color: var(--white);
    border-radius: 0;
    font-size: 10px;
    top: 10px;
    right: 10px;
    left: auto;
    padding: 3px 8px;
    min-height: auto;
    min-width: auto;
    line-height: 1.4;
}

.woocommerce ul.products li.product .star-rating { display: none; }

/* =================================================================
   SINGLE PRODUCT
   ================================================================= */
.woocommerce div.product .product_title {
    font-family: var(--font-h);
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--dark);
    margin-bottom: 8px;
}

.woocommerce div.product p.price {
    font-family: var(--font-b);
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
}

.woocommerce div.product .single_add_to_cart_button {
    background: var(--dark) !important;
    color: var(--white) !important;
    border: none;
    border-radius: 0 !important;
    font-family: var(--font-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 45px;
    width: 100%;
}

.woocommerce div.product .single_add_to_cart_button:hover { background: #333 !important; }

/* =================================================================
   PAGES
   ================================================================= */
.v-main { padding: 40px 0 60px; }
.v-page-container { max-width: 750px; }

/* =================================================================
   CATEGORY HERO BANNER (Parallax)
   ================================================================= */
/* Category hero: ~50vh (shorter than homepage hero 80vh) */
.v-cat-hero {
    position: relative;
    min-height: 50vh;
    max-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.v-cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.v-cat-hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 60px;
    max-width: 680px;
}

.v-cat-breadcrumb {
    font-family: var(--font-b);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.v-cat-breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.v-cat-breadcrumb a:hover { color: var(--white); }
.v-cat-breadcrumb span { margin: 0 6px; }
.v-cat-breadcrumb-current { color: var(--white); font-weight: 500; }

.v-cat-hero-title {
    font-family: var(--font-h);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.1;
}

.v-cat-hero-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    max-width: 500px;
    line-height: 1.7;
}

/* Hide default WC header on category pages (we have our own hero) */
.v-archive-products .woocommerce-products-header { display: none; }

/* Archive products spacing */
.v-archive-products { padding-top: 35px; }

/* Category page title (fallback if no hero) */
.woocommerce-products-header__title {
    font-family: var(--font-h);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--dark);
    margin-bottom: 6px;
}

.term-description p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 20px;
}

.v-page-title {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    text-align: center;
}

.v-content {
    font-size: 14px;
    line-height: 1.85;
    color: var(--grey);
}

.v-content p { margin-bottom: 1.5em; }

/* =================================================================
   FOOTER
   ================================================================= */
.v-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
}

.v-footer-main { padding: 55px 0 35px; }

.v-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 35px;
}

.v-footer h4 {
    font-family: var(--font-b);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.v-footer p { font-size: 13px; line-height: 1.7; }
.v-footer-brand .v-footer-logo {
    display: block;
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 18px;
    filter: invert(1) brightness(1.15);
}

.v-footer ul li { margin-bottom: 6px; }

.v-footer ul li a {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.v-footer ul li a:hover { color: var(--gold); }

.v-social { display: flex; gap: 14px; }

.v-social a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.v-social a:hover { color: var(--gold); }

.v-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}

.v-footer-bottom p {
    font-size: 11px;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

/* =================================================================
   BREADCRUMBS + WOOCOMMERCE MISC
   ================================================================= */
.woocommerce-breadcrumb {
    font-family: var(--font-b);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 25px;
}

.woocommerce-result-count,
.woocommerce-ordering {
    font-family: var(--font-b);
    font-size: 12px;
}

.woocommerce .quantity .qty {
    border: 1px solid var(--border);
    font-family: var(--font-b);
}

.woocommerce-tabs ul.tabs li a {
    font-family: var(--font-b);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    font-family: var(--font-b);
    border-top-color: var(--dark);
}

.woocommerce-message::before { color: var(--dark); }

/* =================================================================
   GLOBAL POLISH
   ================================================================= */
html { scroll-behavior: smooth; }
body.search-open, body.menu-open { overflow: hidden; }
::selection { background: var(--gold); color: var(--white); }

/* =================================================================
   SEARCH OVERLAY
   ================================================================= */
.v-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.v-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.v-search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}
.v-search-close:hover { color: var(--white); }

.v-search-form { width: 90%; max-width: 600px; text-align: center; }

.v-search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 20px 0;
    font-family: var(--font-h);
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    text-align: center;
    letter-spacing: 0.02em;
    transition: border-color 0.3s;
}
.v-search-input::placeholder { color: rgba(255,255,255,0.3); }
.v-search-input:focus { border-bottom-color: var(--gold); }

.v-search-hint {
    display: block;
    margin-top: 14px;
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

/* =================================================================
   HERO ANIMATIONS
   ================================================================= */
@keyframes v-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.v-hero { overflow: hidden; }
.v-hero-kicker  { animation: v-fadeUp 0.8s ease both 0.2s; }
.v-hero h1      { animation: v-fadeUp 0.9s ease both 0.4s; }
.v-hero-desc    { animation: v-fadeUp 0.8s ease both 0.6s; }
.v-hero .v-btn  { animation: v-fadeUp 0.8s ease both 0.85s; }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.v-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.v-reveal.is-visible { opacity: 1; transform: translateY(0); }

.v-reveal-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.v-reveal-child.is-visible { opacity: 1; transform: translateY(0); }

.v-heritage-img { overflow: hidden; }

/* =================================================================
   SINGLE PRODUCT PAGE (PDP)
   ================================================================= */
.v-single-product { padding-top: 25px; }

.v-pdp {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 55px;
    margin-bottom: 50px;
    align-items: start;
}

/* --- Gallery --- */
.v-pdp-gallery { display: flex; flex-direction: column; }

.v-pdp-main-img {
    background: var(--white);
    overflow: hidden;
    cursor: crosshair;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v-pdp-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}
.v-pdp-main-img:hover img { transform: scale(1.6); }

.v-pdp-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.v-pdp-thumb {
    width: 72px; height: 72px;
    padding: 0; border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer; opacity: 0.55;
    transition: all 0.25s;
}
.v-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v-pdp-thumb:hover, .v-pdp-thumb.is-active { opacity: 1; border-color: var(--dark); }

/* --- Info column --- */
.v-pdp-title {
    font-family: var(--font-h);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

.v-pdp-price {
    font-family: var(--font-b);
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 20px;
}
.v-pdp-price del { color: var(--grey); font-weight: 300; }
.v-pdp-price ins { text-decoration: none; }

.v-pdp-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--grey);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.v-pdp-desc p:last-child { margin-bottom: 0; }

/* --- Cart form overrides --- */
.v-pdp-cart .variations { border: none !important; width: 100%; margin-bottom: 0; }
.v-pdp-cart .variations tr { display: block; margin-bottom: 14px; }
.v-pdp-cart .variations td,
.v-pdp-cart .variations th { display: block; border: none !important; padding: 0 !important; }
.v-pdp-cart .variations .label { margin-bottom: 6px; text-align: left; }
.v-pdp-cart .variations .label label {
    font-family: var(--font-b); font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark);
}
/* Hide PayPal smart button on PDP — too noisy for luxury */
.v-pdp-cart #ppc-button-ppcp-gateway,
.v-pdp-cart .ppc-button-wrapper { display: none !important; }

/* Hide plugin wishlist button inside cart form (we have our own in .v-pdp-actions) */
.v-pdp-cart .tinvwl_add_to_wishlist_button,
.v-pdp-cart .tinv-wraper,
.v-pdp-cart .tinvwl-product-in-list,
.v-pdp .woocommerce-product-gallery + .tinv-wraper { display: none !important; }
.v-pdp-cart .variations select {
    width: 100%; padding: 13px 16px;
    border: 1px solid var(--border); border-radius: 0;
    font-family: var(--font-b); font-size: 13px; color: var(--dark);
    background: var(--white); appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23515151' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    cursor: pointer; transition: border-color 0.3s;
}
.v-pdp-cart .variations select:focus { border-color: var(--dark); outline: none; }
.v-pdp-cart .reset_variations { font-size: 11px; color: var(--grey); margin-top: 6px; display: inline-block; }

/* Hide quantity (not needed for jewelry) */
.v-pdp-cart .quantity { display: none; }

/* Hide any plugin-generated swatches (woo-variation-swatches-pro etc.) — we use our own */
.v-pdp-cart .variable-items-wrapper,
.v-pdp-cart .wvs-style-squared,
.v-pdp-cart .wvs-archive-variations-wrapper { display: none !important; }

/* =================================================================
   CUSTOM VARIATION SWATCHES (theme-controlled, no plugin dependency)
   ================================================================= */
.v-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

/* Common swatch button base */
.v-swatch {
    appearance: none;
    -webkit-appearance: none;
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
    font-family: var(--font-b);
    padding: 0;
}
.v-swatch:hover { border-color: var(--dark); }
.v-swatch.is-selected {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--white);
}

/* Text/label swatch (for Materiale, Dimensioni, Misura) */
.v-swatch-label {
    min-width: 58px;
    min-height: 40px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
}

/* Color swatch: square containing a small colored Ventrella triangle (inline SVG child) */
.v-swatches-color { gap: 8px; }
.v-swatch-color {
    width: 42px;
    height: 42px;
    background-color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v-swatch-color .v-swatch-tri {
    display: block;
    transition: transform 0.2s;
}
.v-swatch-color:hover {
    background-color: #f8f7f5;
}
.v-swatch-color:hover .v-swatch-tri { transform: scale(1.08); }
.v-swatch-color.is-selected {
    background-color: #f0ece4;
    border-color: var(--dark);
}

/* Unavailable swatch: X overlay, faded, not clickable */
.v-swatch.is-unavailable {
    cursor: not-allowed;
    opacity: 0.45;
    position: relative;
    pointer-events: auto; /* keep click for preventDefault, handled by JS */
}
.v-swatch.is-unavailable:hover {
    border-color: var(--border);
    background: var(--white);
    color: var(--dark);
    transform: none;
}
.v-swatch.is-unavailable::before,
.v-swatch.is-unavailable::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 130%;
    height: 1.5px;
    background: #b00020;
    transform-origin: center;
    pointer-events: none;
}
.v-swatch.is-unavailable::before { transform: translate(-50%, -50%) rotate(45deg); }
.v-swatch.is-unavailable::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.v-swatch-color.is-unavailable .v-swatch-tri { opacity: 0.5; }

/* Disabled / unavailable swatches — greyed out, not clickable, diagonal line */
.variable-item.disabled,
.variable-item.out-of-stock,
.variable-item.no-stock {
    opacity: 0.2 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    position: relative;
}
.variable-item.disabled::after,
.variable-item.out-of-stock::after,
.variable-item.no-stock::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, transparent calc(50% - 0.5px), var(--grey) calc(50% - 0.5px), var(--grey) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

/* CTA button */
.v-pdp-cart .single_add_to_cart_button {
    display: block !important; width: 100% !important;
    background: var(--dark) !important; color: var(--white) !important;
    border: none !important; border-radius: 0 !important;
    font-family: var(--font-b); font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 18px !important; margin-top: 10px;
    cursor: pointer; transition: background 0.3s;
}
.v-pdp-cart .single_add_to_cart_button:hover { background: #333 !important; }

/* Disable greyed-out state */
.v-pdp-cart .single_add_to_cart_button.disabled,
.v-pdp-cart .single_add_to_cart_button:disabled {
    opacity: 0.5; cursor: not-allowed;
}

/* WC PayPal — tone it down */
.v-pdp-cart .wc-ppcp-paylater-msg,
.v-pdp-cart #ppc-button-ppcp-gateway { margin-top: 10px; }

/* --- Meta --- */
.v-pdp-meta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.v-pdp-meta a { color: var(--grey); transition: color 0.2s; }
.v-pdp-meta a:hover { color: var(--dark); }

/* --- Actions (wishlist, share) --- */
.v-pdp-actions {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--grey);
}
.v-pdp-actions a, .v-pdp-actions .tinvwl_add_to_wishlist_button {
    font-size: 12px !important;
    color: var(--grey) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    transition: color 0.3s;
}
.v-pdp-actions a:hover, .v-pdp-actions .tinvwl_add_to_wishlist_button:hover { color: var(--dark) !important; }
.v-pdp-share svg { width: 15px; height: 15px; }

/* =================================================================
   PRODUCT ACCORDION
   ================================================================= */
.v-accordion { margin-top: 50px; border-top: 1px solid var(--border); }
.v-accordion-item { border-bottom: 1px solid var(--border); }
.v-accordion-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; cursor: pointer;
    font-family: var(--font-b); font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark);
    user-select: none;
}
.v-accordion-icon { font-size: 18px; transition: transform 0.3s; font-weight: 300; }
.v-accordion-item.is-open .v-accordion-icon { transform: rotate(45deg); }
.v-accordion-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease; padding: 0;
}
.v-accordion-item.is-open .v-accordion-body { max-height: 600px; padding: 0 0 20px; }
.v-accordion-body p { font-size: 14px; line-height: 1.8; color: var(--grey); }

/* Related products */
.v-related-section { padding: 60px 0; }
.v-related-section h2 {
    font-family: var(--font-h); font-size: 28px; font-weight: 400;
    text-align: center; margin-bottom: 35px; color: var(--dark);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
    .v-hamburger { display: flex; flex-direction: column; }

    .v-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        z-index: 9999;
        overflow-y: auto;
        transition: right 0.3s ease;
        border-top: none;
        padding-top: 50px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }

    .v-nav.is-open { right: 0; }

    .v-menu {
        flex-direction: column;
    }

    .v-menu-item > a {
        padding: 13px 25px;
        font-size: 12px;
        border-bottom: 1px solid var(--border);
    }

    .v-mega, .v-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        width: 100%;
        padding: 0 0 0 15px;
        margin-left: 0;
        display: none;
    }

    .v-menu-item.is-open > .v-mega,
    .v-menu-item.is-open > .v-dropdown { display: block; }

    .v-mega-inner {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

    .v-mega-products { flex-direction: column; gap: 12px; }
    .v-mega-product-card { width: 100%; display: flex; align-items: center; gap: 12px; }
    .v-mega-product-card img { width: 60px; height: 60px; aspect-ratio: 1; }

    .v-dropdown-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 15px;
    }

    .v-hero { min-height: 55vh; }
    .v-hero h1 { font-size: 32px; }
    .v-hero-content { padding: 25px; }
    .v-hero-desc { font-size: 13px; }

    .v-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }

    .v-heritage-grid { grid-template-columns: 1fr; }
    .v-heritage-text-block { padding: 40px 25px; }
    .v-heritage-img { max-height: 300px; }

    .v-newsletter-form { flex-direction: column; gap: 10px; }

    .v-cat-hero { min-height: 35vh; max-height: 300px; }
    .v-cat-hero-content { padding: 30px 25px; }
    .v-cat-hero-title { font-size: 32px; }

    .v-pdp { grid-template-columns: 1fr; gap: 30px; }
    .v-pdp-title { font-size: 28px; }
    .v-pdp-thumb { width: 56px; height: 56px; }
    .v-search-input { font-size: 24px; }

    .v-footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    .v-container { padding: 0 20px; }
    .v-section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .v-hero h1 { font-size: 28px; }
    .v-section-title { font-size: 26px; }
    .v-footer-grid { grid-template-columns: 1fr; }
    .v-hero { min-height: 45vh; }
    .v-cat-grid { grid-template-columns: 1fr 1fr; }
}

/* =================================================================
   UTILITY: Hide WP admin bar logo interference
   ================================================================= */
body.menu-open { overflow: hidden; }



/* =====================================================
   GIFT CARD + LISTA REGALI pages
   ===================================================== */

/* HERO ------------------------------------------------ */
.v-gc-hero {
    position: relative;
    min-height: 68vh;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}
.v-gc-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.78) 100%);
}
.v-gc-hero *,
.v-gc-hero a,
.v-gc-hero h1,
.v-gc-hero h2,
.v-gc-hero p,
.v-gc-hero span { color: #fff !important; }
.v-gc-hero .v-gc-title { color: #fff !important; text-shadow: 0 2px 22px rgba(0,0,0,.45); }
.v-gc-hero .v-gc-kicker,
.v-gc-hero .v-gc-subtitle { color: rgba(255,255,255,.95) !important; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.v-gc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 32px 28px;
}
.v-gc-hero .v-cat-breadcrumb {
    justify-content: center;
    color: rgba(255,255,255,.85);
    margin-bottom: 22px;
}
.v-gc-hero .v-cat-breadcrumb a { color: rgba(255,255,255,.85); }
.v-gc-hero .v-cat-breadcrumb-current { color: #fff; }
.v-gc-kicker {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 14px;
    opacity: .92;
}
.v-gc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 18px;
    letter-spacing: .5px;
}
.v-gc-subtitle {
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 30px;
    opacity: .9;
}
.v-btn-light {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
}
.v-btn-light:hover { background: #fff; color: #1a1a1a; }

/* INTRO block ----------------------------------------- */
.v-gc-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}
.v-lr-intro-grid { grid-template-columns: .9fr 1.1fr; }
.v-gc-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
    margin: 0 0 18px;
}
.v-gc-intro-text p strong { color: #1a1a1a; font-weight: 500; }
.v-gc-intro-text .v-section-title {
    text-align: left;
    margin-bottom: 24px;
}
.v-gc-intro-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.v-section-kicker {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 12px;
    font-weight: 500;
}
.v-section-kicker.v-light { color: rgba(255,255,255,.85); }
.v-section-title.v-light { color: #fff; }

/* STEPS ----------------------------------------------- */
.v-gc-steps { text-align: center; }
.v-gc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.v-lr-steps-grid { grid-template-columns: repeat(4, 1fr); gap: 34px; }
.v-gc-step {
    padding: 30px 20px;
    text-align: center;
}
.v-gc-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    color: #C9A96E;
    margin-bottom: 16px;
    line-height: 1;
}
.v-gc-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #1a1a1a;
}
.v-gc-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* EDITORIAL BANNER ------------------------------------ */
.v-gc-banner {
    position: relative;
    padding: 140px 0 !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}
.v-gc-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,.72), rgba(10,10,10,.78));
}
.v-gc-banner .v-container { position: relative; z-index: 2; }
.v-gc-banner * { color: #fff !important; }
.v-gc-banner .v-section-title {
    font-style: italic;
    line-height: 1.3;
    text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.v-gc-banner .v-section-kicker { color: rgba(255,255,255,.9) !important; }
.v-lr-cta * { color: #fff !important; }
.v-lr-cta .v-section-title { text-shadow: 0 2px 18px rgba(0,0,0,.5); }
.v-lr-cta .v-gc-banner-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,.7), rgba(10,10,10,.78));
}

/* PRODUCTS section ------------------------------------ */
.v-gc-products .woocommerce ul.products { margin-top: 40px; }
.v-gc-products .v-section-subtitle { margin-bottom: 20px; }

/* OCCASIONS ------------------------------------------- */
.v-lr-occ-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-top: 50px;
}
.v-lr-occ-item {
    text-align: center;
    padding: 36px 22px;
    border: 1px solid var(--ventrella-border, #e5e2dd);
    background: #fff;
    transition: transform .35s ease, border-color .35s ease;
}
.v-lr-occ-item:hover {
    transform: translateY(-4px);
    border-color: #C9A96E;
}
.v-lr-occ-icon {
    font-size: 28px;
    color: #C9A96E;
    margin-bottom: 16px;
}
.v-lr-occ-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 10px;
}
.v-lr-occ-item p {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* FAQ ------------------------------------------------- */
.v-gc-faq-list {
    max-width: 820px;
    margin: 50px auto 0;
}
.v-gc-faq-item {
    border-bottom: 1px solid var(--ventrella-border, #e5e2dd);
    padding: 20px 0;
}
.v-gc-faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.v-gc-faq-item summary::-webkit-details-marker { display: none; }
.v-gc-faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: #C9A96E;
    transition: transform .3s;
}
.v-gc-faq-item[open] summary::after { content: '−'; }
.v-gc-faq-item p {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
}

/* LR CTA ---------------------------------------------- */
.v-lr-cta {
    position: relative;
    padding: 110px 0 !important;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.v-lr-cta .v-container { position: relative; z-index: 2; }
.v-lr-cta-text {
    max-width: 560px;
    margin: 20px auto 32px;
    font-size: 15px;
    line-height: 1.75;
    opacity: .92;
}

/* Mega menu: 6 products — 3 cols x 2 rows ------------- */
.v-mega-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.v-mega-products.v-mega-cats {
    grid-template-columns: repeat(3, 1fr);
}

/* Mega column: Gift Card / Lista Regali separator ----- */
.v-mega-col ul .v-mega-sep {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.12);
}

/* Responsive ------------------------------------------ */
@media (max-width: 1024px) {
    .v-gc-intro-grid, .v-lr-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .v-gc-steps-grid, .v-lr-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .v-lr-occ-grid { grid-template-columns: repeat(2, 1fr); }
    .v-mega-products, .v-mega-products.v-mega-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .v-gc-steps-grid, .v-lr-steps-grid { grid-template-columns: 1fr; }
    .v-lr-occ-grid { grid-template-columns: 1fr; }
    .v-gc-hero { min-height: 52vh; }
    .v-gc-banner { padding: 80px 0 !important; background-attachment: scroll; }
    .v-mega-footer { flex-direction: column; gap: 10px; }
}

/* =====================================================
   GIFT CARD PDP — Luxury UI
   ===================================================== */

/* Amount selector: gold accent on selected */
.product-type-pw-gift-card .v-pdp-cart .variations td.value {
    padding: 0 !important;
}
.product-type-pw-gift-card .v-pdp-cart .variations .label {
    margin-bottom: 10px;
}
.product-type-pw-gift-card .v-pdp-cart .variations .label label {
    font-family: var(--font-b) !important;
    font-size: 11px !important;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 500;
}
/* Swatch buttons for amounts */
.product-type-pw-gift-card .v-swatch,
.product-type-pw-gift-card .v-pdp-cart .variations select + ul li,
.product-type-pw-gift-card .v-pdp-cart .v-swatch-label {
    min-width: 70px;
    padding: 12px 18px !important;
    font-size: 15px !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 500;
    border: 1px solid var(--border) !important;
    transition: all .3s;
}
.product-type-pw-gift-card .v-swatch.is-selected,
.product-type-pw-gift-card .v-swatch-label.is-selected {
    background: var(--dark) !important;
    color: #fff !important;
    border-color: var(--dark) !important;
}
.product-type-pw-gift-card .v-swatch:hover {
    border-color: #C9A96E !important;
}

/* Reset/clear link */
.product-type-pw-gift-card .reset_variations {
    font-size: 10px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey) !important;
    margin-top: 8px !important;
}

/* PW Gift Card fields */
.product-type-pw-gift-card #pwgc-purchase-container {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.product-type-pw-gift-card .pwgc-label {
    font-family: var(--font-b) !important;
    font-size: 11px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500 !important;
    color: var(--dark);
    margin-bottom: 8px;
}
/* PW Gift Card fields — use .v-pdp-cart as ancestor (not .product-type-pw-gift-card which is on <li> in related) */
.v-pdp-cart .pwgc-input-text,
.v-pdp-cart #pwgc-message,
#pwgc-purchase-container .pwgc-input-text,
#pwgc-purchase-container #pwgc-message {
    width: 100% !important;
    border: 1px solid #d5d2cd !important;
    padding: 14px 18px !important;
    font-family: var(--font-b) !important;
    font-size: 14px !important;
    color: var(--dark);
    background: #fff;
    transition: border-color .3s;
    border-radius: 0;
    box-sizing: border-box;
}
.v-pdp-cart .pwgc-input-text:focus,
.v-pdp-cart #pwgc-message:focus,
#pwgc-purchase-container .pwgc-input-text:focus,
#pwgc-purchase-container #pwgc-message:focus {
    border-color: #C9A96E !important;
    outline: none;
}
.v-pdp-cart #pwgc-message,
#pwgc-purchase-container #pwgc-message {
    height: 110px;
    resize: vertical;
}
.v-pdp-cart .pwgc-subtitle,
#pwgc-purchase-container .pwgc-subtitle {
    font-size: 11px !important;
    color: var(--grey) !important;
    margin-top: 6px;
}
.v-pdp-cart .pwgc-field-container,
#pwgc-purchase-container .pwgc-field-container {
    margin-bottom: 22px !important;
}
.v-pdp-cart .pwgc-label,
#pwgc-purchase-container .pwgc-label {
    font-family: var(--font-b) !important;
    font-size: 11px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500 !important;
    color: var(--dark);
    margin-bottom: 8px;
}
.v-pdp-cart #pwgc-purchase-container,
#pwgc-purchase-container {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #e5e2dd;
}

/* Hide quantity selector — gift card is always 1 */
.v-pdp-cart .quantity:has(+ .single_add_to_cart_button) {
    display: none !important;
}
/* Fallback for browsers without :has */
.single-product.postid-294258 .v-pdp-cart .quantity,
.single-product.postid-293995 .v-pdp-cart .quantity {
    display: none !important;
}

/* CTA button on gift card PDP */
.v-pdp-cart .single_add_to_cart_button {
    width: 100% !important;
    padding: 16px 30px !important;
    font-size: 12px !important;
    letter-spacing: 3px !important;
    margin-top: 10px;
}

/* Hide wishlist on gift card PDP */
.single-product.postid-294258 .tinv-wraper,
.single-product.postid-293995 .tinv-wraper { display: none !important; }
