/* ==========================================================
   VELUM CARE - PREMIUM FEATURES STYLES
   ========================================================== */

/* CSS variables fallback (uses theme's existing if defined) */
:root {
    --v-gold: #c9a84c;
    --v-gold-dark: #a88d3a;
    --v-black: #0a0a0a;
    --v-white: #ffffff;
    --v-gray-50: #fafafa;
    --v-gray-100: #f5f5f5;
    --v-gray-200: #e8e8e8;
    --v-gray-300: #d4d4d4;
    --v-gray-500: #888;
    --v-gray-700: #4a4a4a;
    --v-text: #0a0a0a;
    --v-text-muted: #6a6a6a;
    --v-border: #e5e5e5;
}

/* ==========================================================
   1. TRUST STRIP
   ========================================================== */
.v-trust-strip {
    background: var(--v-gray-50);
    padding: 36px 0;
    border-top: 1px solid var(--v-border);
    border-bottom: 1px solid var(--v-border);
}
.v-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}
.v-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.v-trust-item svg {
    width: 36px;
    height: 36px;
    color: var(--v-gold);
    flex-shrink: 0;
}
.v-trust-item strong {
    display: block;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--v-black);
    line-height: 1.2;
    margin-bottom: 3px;
    letter-spacing: 0.01em;
}
.v-trust-item span {
    display: block;
    font-size: 12px;
    color: var(--v-text-muted);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .v-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
    .v-trust-strip { padding: 24px 0; }
    .v-trust-grid { grid-template-columns: 1fr; gap: 14px; }
    .v-trust-item svg { width: 28px; height: 28px; }
    .v-trust-item strong { font-size: 14px; }
    .v-trust-item span { font-size: 11px; }
}

/* ==========================================================
   2. MINI CART DRAWER
   ========================================================== */
.v-mini-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}
.v-mini-cart-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}
.v-mini-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.v-mini-cart-drawer.is-open .v-mini-cart-backdrop {
    opacity: 1;
}
.v-mini-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background: var(--v-white);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.v-mini-cart-drawer.is-open .v-mini-cart-panel {
    transform: translateX(0);
}
.v-mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--v-border);
}
.v-mini-cart-header h2 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: var(--v-black);
    letter-spacing: 0.02em;
}
.v-mini-cart-count {
    color: var(--v-gold);
    font-size: 16px;
    margin-left: 6px;
}
.v-mini-cart-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--v-text-muted);
    cursor: pointer;
    padding: 4px 10px;
    transition: color 0.2s;
}
.v-mini-cart-close:hover { color: var(--v-black); }
.v-mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.v-mini-cart-loading {
    padding: 60px 24px;
    text-align: center;
    color: var(--v-text-muted);
}
.v-mini-cart-items { padding: 16px 0; }
.v-mini-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--v-gray-100);
    align-items: center;
}
.v-mini-cart-item-img { display: block; }
.v-mini-cart-item-img img,
.v-mini-cart-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: var(--v-gray-100);
    border-radius: 2px;
}
.v-mini-cart-item-info { min-width: 0; }
.v-mini-cart-item-name {
    display: block;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 16px;
    color: var(--v-black);
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.v-mini-cart-item-name:hover { color: var(--v-gold); }
.v-mini-cart-item-meta {
    font-size: 13px;
    color: var(--v-text-muted);
    display: flex;
    gap: 6px;
    align-items: center;
}
.v-mini-cart-price {
    color: var(--v-black);
    font-weight: 500;
}
.v-mini-cart-remove {
    background: none;
    border: 1px solid var(--v-border);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--v-text-muted);
    text-decoration: none;
    line-height: 1;
    transition: all 0.2s;
}
.v-mini-cart-remove:hover {
    background: var(--v-black);
    border-color: var(--v-black);
    color: var(--v-white);
}
.v-mini-cart-empty {
    padding: 60px 24px;
    text-align: center;
}
.v-mini-cart-empty-icon {
    width: 64px;
    height: 64px;
    color: var(--v-gray-300);
    margin-bottom: 16px;
}
.v-mini-cart-empty-text {
    color: var(--v-text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}
.v-mini-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--v-border);
    background: var(--v-white);
}
.v-mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 18px;
}
.v-mini-cart-total strong {
    font-size: 22px;
    color: var(--v-gold);
    font-weight: 500;
}
.v-mini-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.v-mini-cart-actions .v-btn {
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .v-mini-cart-panel { max-width: 100%; }
    .v-mini-cart-item { grid-template-columns: 64px 1fr auto; gap: 12px; padding: 12px 16px; }
    .v-mini-cart-item-img img,
    .v-mini-cart-thumb { width: 64px; height: 64px; }
}

/* ==========================================================
   3. SEARCH AUTOSUGGEST
   ========================================================== */
.v-search-wrap {
    position: relative;
}
.v-search-form {
    display: flex;
    align-items: center;
    background: var(--v-white);
    border: 1px solid var(--v-border);
    border-radius: 28px;
    padding: 0 8px 0 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.v-search-form:focus-within {
    border-color: var(--v-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.v-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 14px;
    background: transparent;
    color: var(--v-black);
    min-width: 200px;
}
.v-search-input::placeholder { color: var(--v-text-muted); }
.v-search-submit {
    background: var(--v-black);
    border: none;
    color: var(--v-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.v-search-submit:hover { background: var(--v-gold); }
.v-search-submit svg { width: 16px; height: 16px; }
.v-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--v-white);
    border: 1px solid var(--v-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-height: 480px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}
.v-search-results.is-open { display: block; }
.v-search-result {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--v-black);
    border-bottom: 1px solid var(--v-gray-100);
    transition: background 0.15s;
}
.v-search-result:last-child { border-bottom: none; }
.v-search-result:hover { background: var(--v-gray-50); }
.v-search-result-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    background: var(--v-gray-100);
    border-radius: 2px;
}
.v-search-result-info { min-width: 0; }
.v-search-result-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 15px;
    color: var(--v-black);
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}
.v-search-result-price {
    font-size: 13px;
    color: var(--v-gold);
    font-weight: 500;
}
.v-search-empty {
    padding: 24px 16px;
    text-align: center;
    color: var(--v-text-muted);
    font-size: 14px;
}

/* ==========================================================
   4. HEADER ICONS (wishlist, cart, search trigger)
   ========================================================== */
.v-header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.v-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--v-black);
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.v-icon-btn:hover { color: var(--v-gold); }
.v-icon-btn svg {
    width: 22px;
    height: 22px;
}
.v-icon-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--v-gold);
    color: var(--v-white);
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.v-icon-badge.is-empty { display: none; }

/* ==========================================================
   5. QUICK VIEW MODAL
   ========================================================== */
.v-qv-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
}
.v-qv-modal.is-open {
    pointer-events: auto;
    visibility: visible;
}
.v-qv-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.v-qv-modal.is-open .v-qv-backdrop { opacity: 1; }
.v-qv-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--v-white);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.v-qv-modal.is-open .v-qv-dialog {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.v-qv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--v-white);
    border: 1px solid var(--v-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--v-text-muted);
    transition: all 0.2s;
}
.v-qv-close:hover {
    background: var(--v-black);
    border-color: var(--v-black);
    color: var(--v-white);
}
.v-qv-body { padding: 0; max-height: 90vh; overflow-y: auto; }
.v-qv-loading { padding: 80px; text-align: center; color: var(--v-text-muted); }
.v-qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.v-qv-gallery {
    background: var(--v-gray-100);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v-qv-gallery img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.v-qv-info { padding: 48px 40px; }
.v-qv-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--v-black);
    margin: 0 0 16px;
    line-height: 1.1;
}
.v-qv-price {
    font-size: 24px;
    color: var(--v-gold);
    font-weight: 500;
    margin-bottom: 24px;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
}
.v-qv-short {
    color: var(--v-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 14px;
}
.v-qv-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v-qv-actions .v-btn { text-align: center; }

@media (max-width: 768px) {
    .v-qv-grid { grid-template-columns: 1fr; }
    .v-qv-gallery { aspect-ratio: 4/3; max-height: 40vh; }
    .v-qv-info { padding: 28px 24px; }
    .v-qv-title { font-size: 24px; }
    .v-qv-price { font-size: 20px; }
}

/* ==========================================================
   6. PRODUCT FILTERS SIDEBAR
   ========================================================== */
.v-filter-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}
.v-filter-sidebar {
    position: sticky;
    top: 100px;
    background: var(--v-white);
    border: 1px solid var(--v-border);
    border-radius: 4px;
    padding: 24px;
}
.v-filter-heading {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 18px;
    color: var(--v-black);
    margin: 0 0 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--v-border);
    letter-spacing: 0.02em;
    font-weight: 500;
}
.v-filter-group {
    padding: 18px 0;
    border-bottom: 1px solid var(--v-gray-100);
}
.v-filter-group:last-child { border-bottom: none; }
.v-filter-group-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--v-text-muted);
    margin: 0 0 12px;
}
.v-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--v-black);
    user-select: none;
}
.v-filter-option:hover { color: var(--v-gold); }
.v-filter-option input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--v-border);
    border-radius: 3px;
    background: var(--v-white);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}
.v-filter-option input:checked {
    border-color: var(--v-gold);
    background: var(--v-gold);
}
.v-filter-option input:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid var(--v-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.v-filter-option-count {
    margin-left: auto;
    color: var(--v-text-muted);
    font-size: 12px;
}
.v-filter-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.v-filter-actions .v-btn {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    text-align: center;
}
.v-filter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--v-border);
}
.v-filter-count {
    font-size: 14px;
    color: var(--v-text-muted);
}
.v-filter-orderby {
    padding: 8px 32px 8px 14px;
    border: 1px solid var(--v-border);
    border-radius: 4px;
    background: var(--v-white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path d="M3 5l3 3 3-3" stroke="black" stroke-width="1.5" fill="none"/></svg>') no-repeat right 10px center;
    appearance: none;
    font-size: 14px;
    color: var(--v-black);
    cursor: pointer;
}
.v-filter-toggle {
    display: none;
    background: var(--v-black);
    color: var(--v-white);
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.v-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.v-no-products {
    padding: 60px 20px;
    text-align: center;
    color: var(--v-text-muted);
    background: var(--v-gray-50);
    border-radius: 4px;
}
.v-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.v-page-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--v-border);
    background: var(--v-white);
    color: var(--v-black);
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.2s;
}
.v-page-btn:hover {
    border-color: var(--v-gold);
    color: var(--v-gold);
}
.v-page-btn.v-page-current {
    background: var(--v-black);
    border-color: var(--v-black);
    color: var(--v-white);
}

@media (max-width: 900px) {
    .v-filter-layout { grid-template-columns: 1fr; }
    .v-filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        width: 85%;
        max-width: 340px;
        z-index: 9998;
        border-radius: 0;
        border: none;
        overflow-y: auto;
        transition: left 0.3s ease;
        padding: 24px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    }
    .v-filter-sidebar.is-open { left: 0; }
    .v-filter-toggle { display: inline-block; }
    .v-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .v-products-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   7. PRODUCT CARD - wishlist heart, quick view
   ========================================================== */
.v-product-card { position: relative; }
.v-product-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}
.v-product-card:hover .v-product-card-actions { opacity: 1; }
.v-card-action-btn {
    width: 38px;
    height: 38px;
    background: var(--v-white);
    border: 1px solid var(--v-border);
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--v-black);
    transition: all 0.2s;
}
.v-card-action-btn:hover {
    background: var(--v-black);
    color: var(--v-white);
    border-color: var(--v-black);
}
.v-card-action-btn svg {
    width: 18px;
    height: 18px;
}
.v-card-action-btn.is-active,
.v-wishlist-heart.is-active {
    background: var(--v-gold);
    border-color: var(--v-gold);
    color: var(--v-white);
}
.v-card-action-btn.is-active svg {
    fill: currentColor;
}
@media (max-width: 768px) {
    .v-product-card-actions { opacity: 1; }
}

/* ==========================================================
   8. STICKY ADD-TO-CART BAR (single product)
   ========================================================== */
.v-sticky-atc {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--v-white);
    border-top: 1px solid var(--v-border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    padding: 14px 0;
    z-index: 100;
    transition: bottom 0.3s ease;
}
.v-sticky-atc.is-visible { bottom: 0; }
.v-sticky-atc-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.v-sticky-atc-img img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 2px;
    background: var(--v-gray-100);
}
.v-sticky-atc-info {
    flex: 1;
    min-width: 0;
}
.v-sticky-atc-name {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 17px;
    color: var(--v-black);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v-sticky-atc-price {
    font-size: 16px;
    color: var(--v-gold);
    font-weight: 500;
    margin-top: 2px;
}
.v-sticky-atc-btn {
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .v-sticky-atc-inner { padding: 0 16px; gap: 12px; }
    .v-sticky-atc-img img { width: 44px; height: 44px; }
    .v-sticky-atc-name { font-size: 14px; }
    .v-sticky-atc-price { font-size: 14px; }
    .v-sticky-atc-btn { padding: 10px 16px; font-size: 12px; }
}

/* ==========================================================
   9. NEWSLETTER POPUP
   ========================================================== */
.v-newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    pointer-events: none;
    visibility: hidden;
}
.v-newsletter-popup.is-open {
    pointer-events: auto;
    visibility: visible;
}
.v-newsletter-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.v-newsletter-popup.is-open .v-newsletter-backdrop { opacity: 1; }
.v-newsletter-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 92%;
    max-width: 480px;
    background: var(--v-white);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.v-newsletter-popup.is-open .v-newsletter-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.v-newsletter-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--v-text-muted);
    cursor: pointer;
    padding: 6px 10px;
    transition: color 0.2s;
    z-index: 2;
}
.v-newsletter-close:hover { color: var(--v-black); }
.v-newsletter-inner {
    padding: 48px 36px 40px;
    text-align: center;
}
.v-newsletter-badge {
    display: inline-block;
    background: var(--v-black);
    color: var(--v-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 6px 14px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.v-newsletter-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--v-black);
    line-height: 1.1;
    margin: 0 0 16px;
}
.v-newsletter-title em {
    color: var(--v-gold);
    font-style: italic;
}
.v-newsletter-text {
    color: var(--v-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px;
}
.v-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.v-newsletter-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--v-border);
    border-radius: 3px;
    font-size: 14px;
    background: var(--v-white);
    color: var(--v-black);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.v-newsletter-input:focus {
    border-color: var(--v-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.v-newsletter-submit {
    width: 100%;
    padding: 14px;
    font-size: 13px;
}
.v-newsletter-disclaimer {
    font-size: 11px;
    color: var(--v-text-muted);
    margin: 0;
}
.v-newsletter-success {
    padding: 20px 0;
}
.v-newsletter-success svg {
    width: 56px;
    height: 56px;
    color: var(--v-gold);
    margin-bottom: 12px;
}
.v-newsletter-success h3 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 26px;
    color: var(--v-black);
    margin: 0 0 8px;
}
.v-newsletter-success p {
    color: var(--v-text-muted);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 480px) {
    .v-newsletter-inner { padding: 36px 24px 28px; }
    .v-newsletter-title { font-size: 28px; }
}

/* ==========================================================
   10. SCROLL TO TOP
   ========================================================== */
.v-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--v-black);
    border: none;
    border-radius: 50%;
    color: var(--v-white);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.v-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.v-scroll-top:hover { background: var(--v-gold); }
.v-scroll-top svg { width: 20px; height: 20px; }
@media (max-width: 600px) {
    .v-scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}

/* ==========================================================
   11. RECENTLY VIEWED
   ========================================================== */
.v-recently-viewed {
    padding: 60px 0;
    background: var(--v-gray-50);
    margin-top: 60px;
}
.v-rv-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--v-black);
    margin: 0 0 32px;
    text-align: center;
    letter-spacing: 0.01em;
}
.v-rv-title em {
    color: var(--v-gold);
    font-style: italic;
}
.v-rv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.v-rv-card {
    display: block;
    text-decoration: none;
    color: var(--v-black);
    transition: transform 0.3s;
}
.v-rv-card:hover { transform: translateY(-4px); }
.v-rv-img {
    aspect-ratio: 1;
    background: var(--v-white);
    margin-bottom: 12px;
    overflow: hidden;
}
.v-rv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v-rv-name {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}
.v-rv-price {
    color: var(--v-gold);
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 900px) {
    .v-rv-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
    .v-rv-grid { grid-template-columns: repeat(2, 1fr); }
    .v-rv-title { font-size: 24px; }
}

/* ==========================================================
   12. BUNDLE / RELATED PRODUCTS
   ========================================================== */
.v-bundle-section {
    padding: 60px 0;
    border-top: 1px solid var(--v-border);
}
.v-bundle-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--v-black);
    margin: 0 0 32px;
    text-align: center;
}
.v-bundle-title em {
    color: var(--v-gold);
    font-style: italic;
}
.v-bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.v-bundle-card {
    display: block;
    text-decoration: none;
    color: var(--v-black);
    border: 1px solid var(--v-border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.v-bundle-card:hover {
    border-color: var(--v-gold);
    transform: translateY(-4px);
}
.v-bundle-img {
    aspect-ratio: 1;
    background: var(--v-gray-100);
    overflow: hidden;
}
.v-bundle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v-bundle-name {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 18px;
    padding: 16px 16px 4px;
    line-height: 1.2;
}
.v-bundle-price {
    padding: 0 16px 16px;
    color: var(--v-gold);
    font-weight: 500;
}
@media (max-width: 768px) {
    .v-bundle-grid { grid-template-columns: 1fr; gap: 16px; }
    .v-bundle-title { font-size: 24px; }
}

/* ==========================================================
   13. PRODUCT VIDEO EMBED
   ========================================================== */
.v-product-video {
    margin: 40px 0;
}
.v-product-video-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--v-black);
    margin: 0 0 16px;
}
.v-product-video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--v-black);
    overflow: hidden;
    border-radius: 4px;
}
.v-product-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================
   14. BREADCRUMBS
   ========================================================== */
.v-breadcrumbs {
    padding: 16px 0;
    background: var(--v-gray-50);
    border-bottom: 1px solid var(--v-border);
    font-size: 13px;
}
.v-bc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.v-bc-list li { display: inline; }
.v-bc-list a {
    color: var(--v-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.v-bc-list a:hover { color: var(--v-gold); }
.v-bc-list span[aria-current="page"] {
    color: var(--v-black);
    font-weight: 500;
}
.v-bc-sep {
    margin: 0 10px;
    color: var(--v-gray-300);
    display: inline-block;
}
@media (max-width: 600px) {
    .v-breadcrumbs { padding: 10px 0; font-size: 12px; }
    .v-bc-sep { margin: 0 6px; }
}

/* ==========================================================
   15. BODY LOCK (when modals open)
   ========================================================== */
body.v-no-scroll {
    overflow: hidden;
}

/* ==========================================================
   16. CART NOTIFICATION (toast)
   ========================================================== */
.v-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--v-black);
    color: var(--v-white);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 90%;
    text-align: center;
}
.v-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.v-toast-success { background: #2a7a4a; }
.v-toast-error { background: #b32a2a; }

/* ==========================================================
   17. SEARCH OVERLAY (fullscreen)
   ========================================================== */
.v-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 24px 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.v-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.v-search-overlay .v-search-wrap {
    width: 100%;
    max-width: 640px;
}
.v-search-overlay .v-search-form {
    width: 100%;
    padding: 0 10px 0 20px;
    border-width: 2px;
}
.v-search-overlay .v-search-input {
    padding: 18px 0;
    font-size: 18px;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
}
.v-search-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: var(--v-white);
    border: 1px solid var(--v-border);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: var(--v-text-muted);
    transition: all 0.2s;
}
.v-search-close:hover {
    background: var(--v-black);
    border-color: var(--v-black);
    color: var(--v-white);
}

/* ==========================================================
   18. HEADER LABELS (hidden on mobile)
   ========================================================== */
.v-action-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
@media (max-width: 900px) {
    .v-action-label { display: none; }
}

/* Hide old v-cart-count display, prefer v-icon-badge */
.v-cart-count { display: none; }

/* ==========================================================
   19. N°XX LEITMOTIF - PRODUCT NUMBERS
   ========================================================== */

/* --- Single product page: large N°XX overlay on gallery --- */
.v-sp-gallery-wrap {
    position: relative;
}
.v-product-number-hero {
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 1;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    color: var(--v-gold);
    opacity: 0.15;
    line-height: 0.85;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
}
.v-product-number-hero .v-pn-prefix {
    font-size: 90px;
    font-weight: 400;
    vertical-align: top;
    margin-right: -10px;
}
.v-product-number-hero .v-pn-digits {
    font-size: 200px;
    font-weight: 400;
}

/* --- Single product info: small N°XX label above title --- */
.v-sp-number-label {
    display: inline-block;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 24px;
    color: var(--v-gold);
    line-height: 1;
    margin: 6px 0 8px;
    letter-spacing: 0.02em;
}

/* --- Product card: subtle N°XX pill --- */
.v-product-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.v-product-meta-top .v-product-cat {
    flex: 1;
    min-width: 0;
}
.v-product-number-pill {
    display: inline-block;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 15px;
    color: var(--v-gold);
    letter-spacing: 0.02em;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .v-product-number-hero .v-pn-prefix { font-size: 64px; }
    .v-product-number-hero .v-pn-digits { font-size: 140px; }
}
@media (max-width: 600px) {
    .v-product-number-hero { top: -10px; left: 0; }
    .v-product-number-hero .v-pn-prefix { font-size: 44px; }
    .v-product-number-hero .v-pn-digits { font-size: 100px; }
}

/* ==========================================================
   20. LAB NOTES SECTION (From the Atelier)
   ========================================================== */
.v-lab-notes {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--v-gray-50) 0%, var(--v-white) 100%);
    position: relative;
}
.v-lab-notes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: var(--v-gold);
    opacity: 0.4;
}
.v-lab-notes-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.v-lab-notes-eyebrow {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 14px;
    color: var(--v-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.v-lab-notes-number {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 56px;
    color: var(--v-black);
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    opacity: 0.85;
}
.v-lab-notes-body {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    color: var(--v-text);
    font-weight: 400;
    letter-spacing: 0.005em;
}
.v-lab-notes-body p {
    margin: 0 0 16px;
}
.v-lab-notes-body p:last-child {
    margin-bottom: 0;
}
.v-lab-notes-body strong {
    font-weight: 500;
    font-style: normal;
    color: var(--v-gold);
}

@media (max-width: 768px) {
    .v-lab-notes { padding: 60px 0; }
    .v-lab-notes-number { font-size: 42px; }
    .v-lab-notes-body { font-size: 18px; }
}
@media (max-width: 480px) {
    .v-lab-notes { padding: 48px 0; }
    .v-lab-notes-body { font-size: 17px; }
}

/* ==========================================================
   21. THE COLLECTION GRID (galeria N°01-N°14)
   ========================================================== */
.v-collection {
    padding: 80px 0;
    background: var(--v-white);
}
.v-collection-header {
    text-align: center;
    margin-bottom: 56px;
}
.v-collection-header .v-eyebrow {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 14px;
    color: var(--v-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.v-collection-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--v-black);
    line-height: 1.1;
    margin: 0 0 20px;
}
.v-collection-title em {
    color: var(--v-gold);
    font-style: italic;
}
.v-collection-header .v-gold-line {
    width: 60px;
    height: 1px;
    background: var(--v-gold);
    margin: 0 auto;
}
.v-collection-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    border-top: 1px solid var(--v-border);
    border-left: 1px solid var(--v-border);
}
.v-coll-card {
    position: relative;
    aspect-ratio: 1;
    border-right: 1px solid var(--v-border);
    border-bottom: 1px solid var(--v-border);
    background: var(--v-white);
    text-decoration: none;
    color: var(--v-black);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    overflow: hidden;
    transition: background 0.4s ease;
}
.v-coll-card:hover {
    background: var(--v-gray-50);
}
.v-coll-number-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 80px;
    color: var(--v-gold);
    opacity: 0.18;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    letter-spacing: -0.02em;
}
.v-coll-card:hover .v-coll-number-bg {
    opacity: 0.35;
    transform: translate(-50%, -55%) scale(1.05);
}
.v-coll-content {
    position: relative;
    z-index: 1;
}
.v-coll-number-small {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 13px;
    color: var(--v-gold);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    line-height: 1;
}
.v-coll-name {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 16px;
    color: var(--v-black);
    line-height: 1.15;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}
.v-coll-price {
    font-size: 12px;
    color: var(--v-text-muted);
    line-height: 1;
}
.v-coll-price .amount {
    color: var(--v-text-muted);
}

@media (max-width: 1200px) {
    .v-collection-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .v-collection { padding: 60px 0; }
    .v-collection-title { font-size: 32px; }
    .v-collection-grid { grid-template-columns: repeat(2, 1fr); }
    .v-coll-number-bg { font-size: 64px; }
    .v-coll-card { padding: 14px; }
    .v-coll-name { font-size: 14px; }
}

/* ==========================================================
   22. FOOTER COLLECTION TAGLINE
   ========================================================== */
.v-footer-collection {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 14px;
    color: var(--v-gold);
    letter-spacing: 0.05em;
    margin: 4px 0 14px;
    opacity: 0.9;
}

/* ==========================================================
   23. HEADER ICON FIXES (override inline header CSS)
   ========================================================== */
/* Hide labels everywhere - icons only for clean premium look */
.v-header-actions .v-action-label { display: none !important; }

/* Tighten gap between header icons */
.v-header-actions {
    gap: 12px !important;
}

/* Make header icons smaller and reserve buffer from nav menu */
.v-header-actions .v-icon-btn {
    padding: 6px;
    width: 36px;
    height: 36px;
}
.v-header-actions .v-icon-btn svg {
    width: 20px;
    height: 20px;
}

/* Make sure nav doesn't grow too wide on desktop, leave space for icons */
@media (min-width: 901px) {
    .v-nav-group {
        max-width: 900px !important;
        padding-right: 200px;
    }
    .v-header-actions {
        right: 0;
    }
}

/* Hide old cart-count visual, use only v-icon-badge */
.v-header-actions .v-cart-count { display: none !important; }

/* ==========================================================
   24. HEADER LAYOUT FIX v2 - flex-based (overrides inline CSS)
   ========================================================== */

/* Desktop: header-inner becomes flex, actions sit naturally on the right */
@media (min-width: 901px) {
    .v-header .v-header-inner {
        display: flex !important;
        align-items: center !important;
        gap: 24px !important;
        position: relative;
    }
    .v-header .v-header-inner .v-nav-group {
        flex: 1 1 auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .v-header .v-header-inner .v-header-actions {
        position: static !important;
        transform: none !important;
        flex: 0 0 auto !important;
        margin-left: auto;
    }
}

/* Header icons - small and consistent */
.v-header .v-header-actions {
    gap: 8px !important;
    display: flex !important;
    align-items: center;
}
.v-header .v-header-actions .v-icon-btn {
    padding: 6px !important;
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
}
.v-header .v-header-actions .v-icon-btn svg {
    width: 19px !important;
    height: 19px !important;
}
.v-header .v-header-actions .v-action-label {
    display: none !important;
}
.v-header .v-header-actions .v-cart-count {
    display: none !important;
}

/* Badge positioning on icons */
.v-header .v-header-actions .v-icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--v-gold);
    color: #fff;
    font-size: 9px;
    min-width: 14px;
    height: 14px;
    border-radius: 7px;
    padding: 0 3px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v-header .v-header-actions .v-icon-badge.is-empty {
    display: none;
}

/* ==========================================================
   25. FILTER PILLS - premium minimal style (front-page)
   ========================================================== */
.v-filter-toolbar .v-filter-pills {
    display: flex !important;
    gap: 0 !important;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--v-border);
    padding-bottom: 0 !important;
}
.v-filter-toolbar .v-filter-pill {
    padding: 14px 0 !important;
    margin-right: 36px !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    color: var(--v-text) !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease !important;
    margin-bottom: -1px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.v-filter-toolbar .v-filter-pill:last-child {
    margin-right: 0 !important;
}
.v-filter-toolbar .v-filter-pill:hover {
    color: var(--v-gold) !important;
    border-bottom-color: transparent !important;
}
.v-filter-toolbar .v-filter-pill.is-active {
    color: var(--v-text) !important;
    border-bottom-color: var(--v-gold) !important;
    font-weight: 600 !important;
}
.v-filter-toolbar .v-filter-pill .v-dot {
    width: 7px !important;
    height: 7px !important;
    margin: 0 !important;
}
.v-filter-toolbar .v-filter-pill span:last-child {
    color: var(--v-text-muted);
    font-weight: 400;
    margin-left: 2px;
}
.v-filter-toolbar .v-filter-count {
    font-size: 11px !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--v-text-muted) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-weight: 500;
}

/* Toolbar itself */
.v-filter-toolbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 32px 0 24px !important;
    padding: 0 !important;
    border-bottom: none !important;
}

@media (max-width: 600px) {
    .v-filter-toolbar { flex-direction: column; align-items: stretch; gap: 12px; }
    .v-filter-toolbar .v-filter-pills { justify-content: center; }
    .v-filter-toolbar .v-filter-pill { margin-right: 24px !important; padding: 10px 0 !important; }
    .v-filter-toolbar .v-filter-count { text-align: center; }
}

/* ==========================================================
   26. PRODUCTS GRID - reset default to 4 cols (was 3 in features)
   ========================================================== */
/* Only scope grid 3-col to inside filter-layout (where sidebar takes space) */
.v-filter-layout .v-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}
/* Outside filter-layout (front page bestsellery, etc), use 4 cols */
.v-products-section .v-products-grid,
section:not(.v-filter-layout) .v-products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 28px !important;
}

@media (max-width: 1100px) {
    .v-filter-layout .v-products-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .v-products-section .v-products-grid,
    section:not(.v-filter-layout) .v-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .v-products-section .v-products-grid,
    .v-filter-layout .v-products-grid,
    section:not(.v-filter-layout) .v-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}
@media (max-width: 480px) {
    .v-products-section .v-products-grid,
    .v-filter-layout .v-products-grid,
    section:not(.v-filter-layout) .v-products-grid {
        grid-template-columns: 1fr !important;
    }
}
