:root {
    --tovzea-plum: #4d123d;
    --tovzea-plum-dark: #2d0a24;
    --tovzea-rose: #b67a72;
    --tovzea-blush: #f7eeee;
    --tovzea-cream: #fffaf7;
    --tovzea-text: #2b2028;
    --tovzea-muted: #746870;
    --tovzea-border: #eadfde;
}

body {
    background: var(--tovzea-cream);
    color: var(--tovzea-text);
}

.site-header {
    background: rgba(255, 250, 247, .96);
    border-bottom: 1px solid var(--tovzea-border);
    padding-top: 1.1em;
    padding-bottom: 1.1em;
}

.site-branding .site-title a,
.main-navigation ul li a,
.site-header-cart .cart-contents {
    color: var(--tovzea-plum);
}

.site-branding .custom-logo {
    max-height: 66px;
    width: auto;
}

.tovzea-home {
    margin: 0;
    max-width: none;
}

.tovzea-hero {
    max-width: 1440px;
    margin: 22px auto 0;
    padding: 0 22px;
}

.tovzea-hero-frame {
    overflow: hidden;
    border-radius: 24px;
    background: #f8eeeb;
    box-shadow: 0 20px 55px rgba(77, 18, 61, .10);
}

.tovzea-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.tovzea-trust-strip {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 18px 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border: 1px solid var(--tovzea-border);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
}

.tovzea-trust-strip div {
    text-align: center;
}

.tovzea-trust-strip div + div {
    border-left: 1px solid var(--tovzea-border);
}

.tovzea-trust-strip strong,
.tovzea-trust-strip span {
    display: block;
}

.tovzea-trust-strip strong {
    color: var(--tovzea-plum);
    font-size: 15px;
}

.tovzea-trust-strip span {
    margin-top: 3px;
    color: var(--tovzea-muted);
    font-size: 12px;
}

.tovzea-products-section {
    max-width: 1240px;
    margin: 76px auto 90px;
    padding: 0 22px;
}

.tovzea-section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.tovzea-section-heading span {
    color: var(--tovzea-rose);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
}

.tovzea-section-heading h1 {
    margin: 10px 0 8px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(29px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.16;
}

.tovzea-section-heading p {
    margin: 0;
    color: var(--tovzea-muted);
}

.tovzea-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
}

.tovzea-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--tovzea-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(72, 34, 60, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.tovzea-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(72, 34, 60, .12);
}

.tovzea-product-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--tovzea-blush);
}

.tovzea-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.tovzea-product-card:hover .tovzea-product-media img {
    transform: scale(1.025);
}

.tovzea-sale-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--tovzea-plum);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.tovzea-product-content {
    padding: 18px;
}

.tovzea-product-content h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.38;
}

.tovzea-product-content h3 a {
    color: var(--tovzea-text);
    text-decoration: none;
}

.tovzea-price {
    min-height: 30px;
    color: var(--tovzea-plum);
    font-size: 17px;
    font-weight: 700;
}

.tovzea-price del {
    color: #a798a1;
    font-weight: 400;
    opacity: 1;
}

.tovzea-card-actions {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.button.tovzea-card-btn,
.button.tovzea-single-buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 9px 12px;
    border: 1px solid var(--tovzea-plum);
    border-radius: 9px;
    box-shadow: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.button.tovzea-add-cart {
    background: #fff;
    color: var(--tovzea-plum);
}

.button.tovzea-buy-now,
.button.tovzea-single-buy-now {
    background: var(--tovzea-plum);
    color: #fff;
}

.button.tovzea-card-btn:hover,
.button.tovzea-single-buy-now:hover {
    background: var(--tovzea-plum-dark);
    border-color: var(--tovzea-plum-dark);
    color: #fff;
}

.tovzea-details-link {
    grid-column: 1 / -1;
    display: block;
    padding-top: 4px;
    color: var(--tovzea-muted);
    font-size: 12px;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tovzea-single-buy-now {
    margin-left: 10px;
}

.tovzea-empty {
    padding: 50px 20px;
    border: 1px dashed var(--tovzea-border);
    border-radius: 18px;
    text-align: center;
}

.woocommerce div.product .product_title,
.woocommerce-products-header__title.page-title {
    color: var(--tovzea-plum);
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
    background: var(--tovzea-plum);
}

@media (max-width: 980px) {
    .tovzea-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .tovzea-hero { margin-top: 12px; padding: 0 12px; }
    .tovzea-hero-frame { border-radius: 15px; }
    .tovzea-trust-strip {
        margin: 15px 12px 0;
        padding: 14px 10px;
        gap: 6px;
    }
    .tovzea-trust-strip strong { font-size: 11px; }
    .tovzea-trust-strip span { display: none; }
    .tovzea-products-section { margin: 48px auto 62px; padding: 0 12px; }
    .tovzea-section-heading { margin-bottom: 25px; }
    .tovzea-section-heading p { font-size: 13px; }
    .tovzea-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 10px; }
    .tovzea-product-card { border-radius: 13px; }
    .tovzea-product-content { padding: 12px 10px 13px; }
    .tovzea-product-content h3 { font-size: 14px; min-height: 39px; }
    .tovzea-price { min-height: 26px; font-size: 14px; }
    .tovzea-card-actions { grid-template-columns: 1fr; gap: 7px; }
    .button.tovzea-card-btn { min-height: 39px; font-size: 11px; }
    .tovzea-details-link { grid-column: auto; }
    .tovzea-single-buy-now { margin: 10px 0 0; width: 100%; }
}


/* Tovzea v1.0.2 refinements */
.home .content-area,
.home .site-main,
.home.page:not(.page-template-template-homepage) .hentry,
.home.page .hentry {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
}

.home .entry-header,
.home .entry-title,
.home .post-edit-link,
.home .type-page::before,
.home .site-main > .woocommerce-notices-wrapper:empty {
    display: none !important;
}

.tovzea-section-heading span::before,
.tovzea-section-heading span::after {
    content: '';
    display: inline-block;
    width: 42px;
    height: 1px;
    background: var(--tovzea-rose);
    vertical-align: middle;
    margin: 0 10px;
    opacity: .5;
}

/* Remove handheld footer bar and menu, show cart in header */
.storefront-handheld-footer-bar,
.storefront-breadcrumb,
.onsale,
.widget_product_search,
.widget_search,
.widget_recent_entries,
.widget_recent_comments,
.widget_archive,
.widget-area,
.secondary-navigation,
.main-navigation,
.menu-toggle,
.handheld-navigation,
.nav-menu,
.site-search {
    display: none !important;
}

.single-product .content-area,
.post-type-archive-product .content-area,
.tax-product_cat .content-area,
.tax-product_tag .content-area {
    width: 100% !important;
    margin-right: 0 !important;
}

.right-sidebar .content-area,
.left-sidebar .content-area,
.full-width-content .content-area {
    width: 100%;
}

.tovzea-header-cart-wrap {
    float: right;
    margin-left: auto;
}

.tovzea-header-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: 2px solid rgba(45, 10, 36, .22);
    border-radius: 8px;
    background: #fff;
    color: var(--tovzea-plum) !important;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.tovzea-header-cart-icon {
    font-size: 18px;
}

.tovzea-header-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--tovzea-plum);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}

.site-header .site-header-cart,
.site-header .site-branding + .col-full .site-header-cart {
    display: none !important;
}

.single-product div.product .summary {
    width: 100%;
}

.single-product div.product form.cart {
    display: grid;
    gap: 10px;
}

.single-product div.product form.cart .quantity {
    margin: 0 !important;
}

.single-product div.product form.cart .single_add_to_cart_button,
.single-product .tovzea-single-buy-now {
    width: 100%;
    min-height: 48px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
}

.single-product .tovzea-single-buy-now {
    margin-top: 0;
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

.tovzea-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(10px);
    z-index: 999999;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(45, 10, 36, .95);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
}

.tovzea-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 760px) {
    .site-header .site-branding {
        width: auto !important;
        margin-bottom: 0 !important;
    }

    .site-header .col-full {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .site-branding .custom-logo,
    .site-branding img {
        max-height: 48px;
    }

    .tovzea-header-cart-text {
        display: none;
    }

    .tovzea-header-cart-link {
        padding: 12px 16px;
    }

    .home .tovzea-hero {
        margin-top: 0;
    }
}

.home .site-content,
.home #primary {
    padding-top: 0 !important;
    margin-top: 0 !important;
}


/* Tovzea v1.0.3 premium styling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(182,122,114,.10), transparent 28%),
        radial-gradient(circle at top right, rgba(77,18,61,.06), transparent 22%),
        var(--tovzea-cream);
}

h1, h2, h3, h4, h5, .woocommerce-loop-product__title, .product_title {
    letter-spacing: -.02em;
}

.col-full {
    max-width: 1240px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding-top: 1em;
    padding-bottom: 1em;
    box-shadow: 0 10px 30px rgba(77, 18, 61, .05);
    backdrop-filter: blur(14px);
}

.site-branding .custom-logo,
.site-branding img {
    max-height: 54px;
    width: auto;
}

.tovzea-header-cart-link {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    box-shadow: 0 8px 20px rgba(77,18,61,.08);
}

.tovzea-header-cart-link:hover {
    transform: translateY(-1px);
    border-color: rgba(77,18,61,.35);
    box-shadow: 0 14px 30px rgba(77,18,61,.12);
}

.tovzea-hero {
    margin-top: 18px;
}

.tovzea-hero-frame {
    position: relative;
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: 0 24px 60px rgba(77, 18, 61, .11);
}

.tovzea-hero-frame::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 28%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 100%);
    pointer-events: none;
}

.tovzea-trust-strip {
    border: 1px solid rgba(182,122,114,.18);
    box-shadow: 0 18px 40px rgba(77,18,61,.05);
}

.tovzea-trust-strip div {
    padding: 4px 0;
}

.tovzea-section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.tovzea-section-heading h1 {
    font-size: clamp(34px, 4vw, 56px);
}

.tovzea-products-grid {
    gap: 26px 20px;
}

.tovzea-product-card {
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(72, 34, 60, .08);
}

.tovzea-product-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.08) 100%);
    pointer-events: none;
}

.tovzea-product-content {
    padding: 18px 18px 20px;
}

.tovzea-product-content h3 {
    font-size: 18px;
    min-height: 48px;
}

.tovzea-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
    font-size: 18px;
}

.tovzea-price ins {
    text-decoration: none;
}

.button.tovzea-card-btn,
.button.tovzea-single-buy-now,
.single-product div.product form.cart .single_add_to_cart_button,
.single-product .tovzea-single-buy-now {
    border-radius: 12px;
    min-height: 46px;
    transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
}

.button.tovzea-card-btn:hover,
.button.tovzea-single-buy-now:hover,
.single-product div.product form.cart .single_add_to_cart_button:hover,
.single-product .tovzea-single-buy-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(77,18,61,.12);
}

.button.tovzea-add-cart {
    border-color: rgba(77,18,61,.18);
    background: #fff;
}

.button.tovzea-buy-now {
    background: linear-gradient(180deg, #5d1949 0%, #431036 100%);
    border-color: #431036;
}

.tovzea-details-link {
    font-weight: 600;
}

.site-footer {
    padding: 26px 0;
    border-top: 1px solid var(--tovzea-border);
    background: rgba(255,255,255,.55);
}

.site-footer .site-info {
    color: var(--tovzea-muted);
    font-size: 13px;
    text-align: center;
}

.single-product .site-main {
    padding-top: 16px;
}

.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    gap: 28px;
    align-items: start;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.single-product div.product .woocommerce-product-gallery {
    position: sticky;
    top: 102px;
    padding: 18px;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 26px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 22px 50px rgba(77,18,61,.08);
}

.single-product div.product .summary {
    padding: 24px;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 26px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 22px 50px rgba(77,18,61,.08);
}

.single-product div.product .product_title {
    margin: 0 0 10px;
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.08;
}

.single-product div.product p.price,
.single-product div.product span.price {
    margin-bottom: 16px;
    color: var(--tovzea-plum);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
}

.single-product div.product p.price del,
.single-product div.product span.price del {
    color: #9f8f98;
    font-size: .72em;
    opacity: 1;
}

.single-product div.product .woocommerce-product-details__short-description {
    margin-bottom: 20px;
    color: var(--tovzea-muted);
    font-size: 15px;
    line-height: 1.72;
}

.single-product div.product form.cart {
    margin-bottom: 18px;
}

.single-product div.product form.cart .quantity .qty {
    min-height: 48px;
    min-width: 110px;
    border: 1px solid rgba(77,18,61,.18);
    border-radius: 12px;
    background: #fff;
}

.single-product div.product form.cart .single_add_to_cart_button {
    background: var(--tovzea-plum) !important;
    border-color: var(--tovzea-plum) !important;
    color: #fff !important;
}

.single-product .tovzea-single-buy-now {
    background: linear-gradient(180deg, #2bb14f 0%, #229545 100%) !important;
    border-color: #229545 !important;
}

.tovzea-product-assurance {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.tovzea-assurance-item {
    position: relative;
    padding: 14px 16px 14px 48px;
    border: 1px solid rgba(182,122,114,.16);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,238,238,.76) 100%);
}

.tovzea-assurance-item::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(77,18,61,.08);
    color: var(--tovzea-plum);
    font-size: 13px;
    font-weight: 800;
    line-height: 22px;
    text-align: center;
}

.tovzea-assurance-item strong,
.tovzea-assurance-item span {
    display: block;
}

.tovzea-assurance-item strong {
    margin-bottom: 2px;
    color: var(--tovzea-plum);
    font-size: 14px;
}

.tovzea-assurance-item span {
    color: var(--tovzea-muted);
    font-size: 12px;
}

.single-product .woocommerce-tabs,
.single-product .related,
.single-product .up-sells {
    margin-top: 34px;
}

.woocommerce-tabs ul.tabs {
    padding-left: 0;
    margin: 0 0 18px;
    border-bottom: 1px solid var(--tovzea-border);
}

.woocommerce-tabs ul.tabs li {
    margin: 0 8px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--tovzea-muted);
    font-weight: 700;
}

.woocommerce-tabs ul.tabs li.active a {
    background: rgba(77,18,61,.08);
    color: var(--tovzea-plum);
}

.single-product .related > h2,
.woocommerce-tabs h2 {
    color: var(--tovzea-plum);
    font-size: 24px;
}

.single-product .related ul.products,
.post-type-archive-product ul.products,
.tax-product_cat ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 20px;
}

.woocommerce ul.products li.product,
.single-product .related ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 16px;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(72, 34, 60, .08);
}

.woocommerce ul.products li.product a img {
    border-radius: 16px;
    margin-bottom: 14px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 46px;
    color: var(--tovzea-text);
    font-size: 17px;
}

.woocommerce ul.products li.product .price {
    color: var(--tovzea-plum);
    font-size: 17px;
    font-weight: 700;
}

.woocommerce ul.products li.product .button {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    text-align: center;
}

.woocommerce-cart .site-main,
.woocommerce-checkout .site-main {
    padding-top: 20px;
}

.woocommerce-cart table.cart,
.woocommerce-checkout .col2-set,
.woocommerce-checkout-review-order {
    border-radius: 22px;
}

@media (max-width: 1100px) {
    .single-product div.product {
        grid-template-columns: 1fr;
    }

    .single-product div.product .woocommerce-product-gallery {
        position: static;
    }

    .single-product .related ul.products,
    .post-type-archive-product ul.products,
    .tax-product_cat ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header {
        padding-top: .9em;
        padding-bottom: .9em;
    }

    .tovzea-trust-strip {
        border-radius: 16px;
    }

    .tovzea-products-grid {
        gap: 14px 10px;
    }

    .tovzea-product-card {
        border-radius: 16px;
    }

    .tovzea-product-content h3 {
        min-height: 40px;
        font-size: 14px;
    }

    .single-product div.product .summary,
    .single-product div.product .woocommerce-product-gallery {
        padding: 14px;
        border-radius: 18px;
    }

    .single-product div.product .product_title {
        font-size: 28px;
    }

    .woocommerce-tabs ul.tabs {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 8px;
        white-space: nowrap;
    }

    .single-product .related ul.products,
    .post-type-archive-product ul.products,
    .tax-product_cat ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
    }

    .woocommerce ul.products li.product,
    .single-product .related ul.products li.product {
        padding: 10px;
        border-radius: 16px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px;
        min-height: 38px;
    }
}


/* Tovzea v1.0.4 premium cart and checkout pages */
.woocommerce-cart .site-content,
.woocommerce-checkout .site-content {
    padding-top: 24px;
    padding-bottom: 70px;
}

.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header {
    margin: 0 auto 28px;
    text-align: center;
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 500;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
    border: 1px solid rgba(182,122,114,.18);
    border-left: 4px solid var(--tovzea-plum);
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 28px rgba(77,18,61,.06);
    color: var(--tovzea-text);
}

.woocommerce-cart-form {
    overflow: hidden;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 22px 52px rgba(77,18,61,.08);
}

.woocommerce-cart table.cart {
    margin: 0;
    border: 0;
    background: transparent;
}

.woocommerce-cart table.cart thead {
    background: linear-gradient(180deg, rgba(77,18,61,.055), rgba(182,122,114,.055));
}

.woocommerce-cart table.cart th {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(182,122,114,.18);
    color: var(--tovzea-plum);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.woocommerce-cart table.cart td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(182,122,114,.13);
    vertical-align: middle;
}

.woocommerce-cart table.cart img {
    width: 82px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(77,18,61,.08);
}

.woocommerce-cart table.cart .product-name a {
    color: var(--tovzea-text);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal {
    color: var(--tovzea-plum);
    font-weight: 800;
}

.woocommerce-cart table.cart a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(77,18,61,.06);
    color: var(--tovzea-plum) !important;
    font-size: 20px;
    text-decoration: none;
}

.woocommerce-cart table.cart a.remove:hover {
    background: var(--tovzea-plum);
    color: #fff !important;
}

.woocommerce-cart table.cart input.qty,
.woocommerce-cart .coupon input.input-text {
    min-height: 46px;
    border: 1px solid rgba(77,18,61,.16);
    border-radius: 11px;
    background: #fff;
    box-shadow: none;
}

.woocommerce-cart table.cart td.actions {
    padding: 20px;
    background: rgba(247,238,238,.44);
}

.woocommerce-cart table.cart td.actions .button,
.woocommerce-cart .coupon .button {
    min-height: 46px;
    border-radius: 11px;
    background: var(--tovzea-plum);
    color: #fff;
    font-weight: 700;
}

.woocommerce-cart .cart-collaterals {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

.woocommerce-cart .cart_totals {
    width: min(460px, 100%) !important;
    padding: 26px;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(182,122,114,.10), transparent 28%),
        rgba(255,255,255,.95);
    box-shadow: 0 22px 52px rgba(77,18,61,.09);
}

.woocommerce-cart .cart_totals h2 {
    margin: 0 0 18px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 500;
}

.woocommerce-cart .cart_totals table {
    border: 0;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(182,122,114,.15);
}

.woocommerce-cart .cart_totals td {
    color: var(--tovzea-plum);
    font-weight: 800;
    text-align: right;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .tovzea-cart-buy-now {
    width: 100%;
    min-height: 54px;
    margin: 10px 0 0;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(180deg, #5c1948 0%, #3d0d31 100%) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(77,18,61,.18);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 28px;
    align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    width: auto;
    float: none;
}

.woocommerce-checkout #customer_details {
    padding: 26px;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 22px 52px rgba(77,18,61,.08);
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 100%;
    float: none;
}

.woocommerce-checkout #order_review_heading {
    grid-column: 2;
    margin: 0 0 -12px;
    padding: 0 26px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 500;
}

.woocommerce-checkout #order_review {
    grid-column: 2;
    padding: 26px;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(182,122,114,.10), transparent 26%),
        rgba(255,255,255,.96);
    box-shadow: 0 22px 52px rgba(77,18,61,.09);
}

.woocommerce-checkout h3 {
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    font-weight: 500;
}

.woocommerce-checkout .form-row label {
    margin-bottom: 7px;
    color: var(--tovzea-text);
    font-size: 13px;
    font-weight: 700;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(77,18,61,.15);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(77,18,61,.03);
}

.woocommerce-checkout textarea {
    min-height: 100px;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    border-color: rgba(77,18,61,.58);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(77,18,61,.08);
}

.woocommerce-checkout-review-order-table {
    border: 0;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 13px 0;
    border-bottom: 1px solid rgba(182,122,114,.15);
}

.woocommerce-checkout-review-order-table td.product-total,
.woocommerce-checkout-review-order-table tfoot td {
    color: var(--tovzea-plum);
    font-weight: 800;
    text-align: right;
}

.woocommerce-checkout #payment {
    margin-top: 20px;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 16px;
    background: rgba(247,238,238,.52);
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 18px;
    border-bottom: 1px solid rgba(182,122,114,.16);
}

.woocommerce-checkout #payment div.payment_box {
    border-radius: 10px;
    background: #fff;
    color: var(--tovzea-muted);
}

.woocommerce-checkout #payment div.form-row {
    padding: 18px;
}

.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(180deg, #5c1948 0%, #3d0d31 100%) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(77,18,61,.20);
    font-size: 15px;
    font-weight: 800;
}

@media (max-width: 860px) {
    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 1;
    }
}

@media (max-width: 760px) {
    .woocommerce-cart .site-content,
    .woocommerce-checkout .site-content {
        padding-top: 10px;
        padding-bottom: 46px;
    }

    .woocommerce-cart-form {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .woocommerce-cart table.cart,
    .woocommerce-cart table.cart tbody,
    .woocommerce-cart table.cart tr,
    .woocommerce-cart table.cart td {
        display: block;
        width: 100%;
    }

    .woocommerce-cart table.cart thead {
        display: none;
    }

    .woocommerce-cart table.cart tr.cart_item {
        position: relative;
        margin-bottom: 14px;
        padding: 14px;
        border: 1px solid rgba(182,122,114,.18);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 14px 32px rgba(77,18,61,.07);
    }

    .woocommerce-cart table.cart td {
        padding: 7px 0;
        border: 0;
        text-align: left !important;
    }

    .woocommerce-cart table.cart td::before {
        color: var(--tovzea-muted);
        font-size: 11px;
        font-weight: 700;
    }

    .woocommerce-cart table.cart td.product-thumbnail {
        display: block;
    }

    .woocommerce-cart table.cart td.product-thumbnail::before,
    .woocommerce-cart table.cart td.product-remove::before,
    .woocommerce-cart table.cart td.product-name::before {
        display: none;
    }

    .woocommerce-cart table.cart img {
        width: 100%;
        max-height: 260px;
        object-fit: cover;
    }

    .woocommerce-cart table.cart td.product-remove {
        position: absolute;
        top: 20px;
        right: 20px;
        width: auto;
        z-index: 2;
    }

    .woocommerce-cart table.cart td.actions {
        margin-top: 14px;
        padding: 14px;
        border-radius: 18px;
    }

    .woocommerce-cart table.cart td.actions .coupon {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .woocommerce-cart table.cart td.actions .coupon input,
    .woocommerce-cart table.cart td.actions .coupon button,
    .woocommerce-cart table.cart td.actions > button {
        width: 100%;
        margin: 0;
    }

    .woocommerce-cart .cart_totals,
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review {
        padding: 18px;
        border-radius: 18px;
    }

    .woocommerce-checkout #order_review_heading {
        padding: 0;
    }
}

/* Tovzea v1.0.5: headerless storefront, floating cart, product landing page */
.home .site-header,
.single-product .site-header {
    display: none !important;
}

.home .site-content,
.home .content-area,
.home #primary,
.single-product .site-content,
.single-product .content-area,
.single-product #primary {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.home .tovzea-hero {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.home .tovzea-hero-frame {
    border-radius: 0 0 26px 26px;
    border: 0;
    box-shadow: 0 24px 60px rgba(77, 18, 61, .10);
}

body.tovzea-cart-open {
    overflow: hidden;
}

.tovzea-floating-cart {
    position: fixed;
    right: 20px;
    bottom: 92px;
    z-index: 99990;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #5b1748 0%, #36102d 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(55, 14, 44, .28);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.tovzea-floating-cart:hover,
.tovzea-floating-cart:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 40px rgba(55, 14, 44, .34);
}

.tovzea-floating-cart svg {
    width: 26px;
    height: 26px;
}

.tovzea-floating-cart-count {
    position: absolute;
    top: -5px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #d8a181;
    color: #2d0a24;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.tovzea-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.tovzea-cart-drawer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.tovzea-cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(26, 8, 21, .60);
    backdrop-filter: blur(5px);
}

.tovzea-cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(430px, 100%);
    height: 100%;
    background: #fffaf7;
    box-shadow: -24px 0 70px rgba(23, 5, 18, .20);
    transform: translateX(104%);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
}

.tovzea-cart-drawer.is-open .tovzea-cart-drawer-panel {
    transform: translateX(0);
}

.tovzea-cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 22px 18px;
    border-bottom: 1px solid rgba(77,18,61,.10);
}

.tovzea-cart-drawer-header span {
    display: block;
    margin-bottom: 4px;
    color: var(--tovzea-rose);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.tovzea-cart-drawer-header h2 {
    margin: 0;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 29px;
    font-weight: 500;
}

.tovzea-cart-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(77,18,61,.07);
    color: var(--tovzea-plum);
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.tovzea-cart-loading {
    padding: 50px 22px;
    color: var(--tovzea-muted);
    text-align: center;
}

.tovzea-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 20px 24px;
}

.tovzea-drawer-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(77,18,61,.09);
}

.tovzea-drawer-item-image {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: var(--tovzea-blush);
}

.tovzea-drawer-item-image img {
    display: block;
    width: 86px;
    height: 108px;
    object-fit: cover;
}

.tovzea-drawer-item-info {
    min-width: 0;
}

.tovzea-drawer-item-name {
    display: block;
    margin-bottom: 8px;
    color: var(--tovzea-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.tovzea-drawer-item-price {
    margin-bottom: 13px;
    color: var(--tovzea-plum);
    font-size: 15px;
    font-weight: 800;
}

.tovzea-drawer-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tovzea-drawer-quantity {
    display: inline-grid;
    grid-template-columns: 34px 42px 34px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(77,18,61,.17);
    border-radius: 999px;
    background: #fff;
}

.tovzea-drawer-quantity button,
.tovzea-drawer-quantity input {
    width: 100%;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--tovzea-plum);
    text-align: center;
    box-shadow: none;
}

.tovzea-drawer-quantity button {
    font-size: 18px;
    cursor: pointer;
}

.tovzea-drawer-quantity input {
    appearance: textfield;
    font-size: 13px;
    font-weight: 700;
}

.tovzea-drawer-quantity input::-webkit-outer-spin-button,
.tovzea-drawer-quantity input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.tovzea-cart-remove {
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: #9a4f5e;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.tovzea-cart-empty {
    margin: auto;
    padding: 48px 28px;
    text-align: center;
}

.tovzea-cart-empty-icon {
    margin-bottom: 12px;
    font-size: 42px;
}

.tovzea-cart-empty h3 {
    margin: 0 0 6px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
}

.tovzea-cart-empty p {
    margin: 0;
    color: var(--tovzea-muted);
    font-size: 13px;
}

.tovzea-cart-drawer-footer {
    padding: 18px 20px 22px;
    border-top: 1px solid rgba(77,18,61,.10);
    background: rgba(255,255,255,.85);
}

.button.tovzea-cart-proceed {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    background: linear-gradient(180deg, #5c1748 0%, #3f0e33 100%) !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.tovzea-cart-drawer.is-busy .tovzea-cart-drawer-panel {
    cursor: wait;
}

/* Single-product landing page */
.single-product .site-main {
    padding: 0 !important;
}

.single-product div.product.tovzea-product-landing {
    display: block !important;
    width: 100%;
    margin: 0 !important;
}

.tovzea-product-brandbar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 22px 20px;
    border-bottom: 1px solid rgba(77,18,61,.08);
    background: rgba(255,250,247,.94);
}

.tovzea-product-brandbar a {
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .18em;
    text-decoration: none;
}

.tovzea-product-landing-shell {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
}

.tovzea-product-gallery-section {
    width: min(760px, 100%);
    margin: 30px auto 0;
}

.single-product .tovzea-product-gallery-section .woocommerce-product-gallery {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.single-product .woocommerce-product-gallery__wrapper {
    overflow: hidden;
    border-radius: 24px;
    background: #f8eeee;
    box-shadow: 0 24px 60px rgba(77,18,61,.10);
}

.single-product .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.single-product .flex-control-thumbs {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0 0 !important;
    padding: 0 !important;
}

.single-product .flex-control-thumbs li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.single-product .flex-control-thumbs img {
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 12px;
    opacity: .65;
    transition: opacity .2s ease, border-color .2s ease;
}

.single-product .flex-control-thumbs img.flex-active,
.single-product .flex-control-thumbs img:hover {
    border-color: var(--tovzea-rose);
    opacity: 1;
}

.tovzea-product-info-section {
    width: min(760px, 100%);
    margin: 34px auto 0;
    padding: 34px;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 26px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 24px 60px rgba(77,18,61,.08);
}

.tovzea-product-kicker,
.tovzea-section-eyebrow {
    margin-bottom: 10px;
    color: var(--tovzea-rose);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.tovzea-product-info-section .product_title {
    margin: 0 0 14px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 6vw, 52px);
    font-weight: 500;
    line-height: 1.08;
    text-align: left;
}

.tovzea-product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0 20px;
    border-top: 1px solid rgba(77,18,61,.08);
    border-bottom: 1px solid rgba(77,18,61,.08);
}

.tovzea-product-price {
    color: var(--tovzea-plum);
    font-size: clamp(27px, 4vw, 36px);
    font-weight: 800;
}

.tovzea-product-price ins {
    text-decoration: none;
}

.tovzea-product-price del {
    margin-right: 8px;
    color: #aa9aa3;
    font-size: .65em;
    font-weight: 500;
    opacity: 1;
}

.tovzea-product-discount {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
}

.tovzea-product-discount span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(45,159,76,.10);
    color: #207d3d;
    font-size: 12px;
    font-weight: 800;
}

.tovzea-product-discount strong {
    color: var(--tovzea-muted);
    font-size: 12px;
    font-weight: 600;
}

.tovzea-product-short-description {
    margin-top: 20px;
    color: var(--tovzea-muted);
    font-size: 15px;
    line-height: 1.8;
}

.tovzea-product-purchase-box {
    margin-top: 24px;
}

.tovzea-product-purchase-box form.cart {
    margin: 0 !important;
}

.tovzea-product-purchase-box form.cart .quantity {
    margin-bottom: 10px !important;
}

.tovzea-product-purchase-box .qty {
    width: 100% !important;
    min-height: 50px;
    border: 1px solid rgba(77,18,61,.16);
    border-radius: 12px;
    background: #fff;
}

.tovzea-product-purchase-box .single_add_to_cart_button,
.tovzea-product-purchase-box .tovzea-single-buy-now {
    width: 100% !important;
    min-height: 52px;
    margin: 0 0 10px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.tovzea-product-purchase-box .single_add_to_cart_button {
    background: var(--tovzea-plum) !important;
    color: #fff !important;
}

.tovzea-product-purchase-box .tovzea-single-buy-now {
    background: linear-gradient(180deg, #2eae50 0%, #218f40 100%) !important;
    border-color: #218f40 !important;
}

.tovzea-product-info-section .tovzea-product-assurance {
    margin-top: 18px;
}

.tovzea-product-details-section,
.tovzea-product-specs-section {
    width: min(760px, 100%);
    margin: 28px auto 0;
    padding: 34px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(77,18,61,.06);
}

.tovzea-product-details-section h2,
.tovzea-product-specs-section h2 {
    margin: 0 0 18px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
}

.tovzea-product-description-content {
    color: var(--tovzea-muted);
    font-size: 15px;
    line-height: 1.85;
}

.tovzea-product-description-content img {
    border-radius: 18px;
}

.tovzea-product-attributes table {
    margin: 0;
    border: 0;
}

.tovzea-product-attributes th,
.tovzea-product-attributes td {
    padding: 13px 0;
    border-bottom: 1px solid rgba(77,18,61,.08);
    background: transparent !important;
}

.tovzea-product-attributes th {
    width: 38%;
    color: var(--tovzea-plum);
    font-weight: 700;
}

.tovzea-product-final-cta {
    width: min(760px, 100%);
    margin: 28px auto 54px;
    padding: 42px 34px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(216,161,129,.34), transparent 35%),
        linear-gradient(145deg, #4f133f 0%, #2d0a24 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 28px 60px rgba(45,10,36,.20);
}

.tovzea-product-final-cta span {
    color: #e6b99f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.tovzea-product-final-cta h2 {
    max-width: 560px;
    margin: 12px auto 24px;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 4.6vw, 42px);
    font-weight: 500;
    line-height: 1.2;
}

.button.tovzea-final-buy-now {
    min-width: 220px;
    min-height: 52px;
    border-radius: 999px;
    background: #fff !important;
    color: var(--tovzea-plum) !important;
    font-size: 15px;
    font-weight: 800;
}

.tovzea-related-products {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 70px;
}

.tovzea-related-products .related > h2 {
    margin-bottom: 24px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.single-product .woocommerce-tabs,
.single-product .product_meta,
.single-product .woocommerce-breadcrumb,
.single-product .storefront-breadcrumb {
    display: none !important;
}

@media (max-width: 760px) {
    .home .tovzea-hero-frame {
        border-radius: 0 0 16px 16px;
    }

    .tovzea-floating-cart {
        right: 14px;
        bottom: 78px;
        width: 54px;
        height: 54px;
    }

    .tovzea-cart-drawer-panel {
        top: auto;
        bottom: 0;
        width: 100%;
        height: min(88vh, 760px);
        border-radius: 24px 24px 0 0;
        transform: translateY(104%);
    }

    .tovzea-cart-drawer.is-open .tovzea-cart-drawer-panel {
        transform: translateY(0);
    }

    .tovzea-cart-drawer-header {
        padding: 20px 16px 15px;
    }

    .tovzea-cart-items {
        padding: 6px 16px 20px;
    }

    .tovzea-drawer-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
    }

    .tovzea-drawer-item-image img {
        width: 76px;
        height: 98px;
    }

    .tovzea-product-brandbar {
        min-height: 74px;
        padding: 18px 12px;
    }

    .tovzea-product-brandbar a {
        font-size: 24px;
    }

    .tovzea-product-landing-shell {
        width: min(100% - 20px, 920px);
    }

    .tovzea-product-gallery-section {
        margin-top: 14px;
    }

    .single-product .woocommerce-product-gallery__wrapper {
        border-radius: 18px;
    }

    .single-product .flex-control-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .tovzea-product-info-section,
    .tovzea-product-details-section,
    .tovzea-product-specs-section {
        margin-top: 18px;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .tovzea-product-info-section .product_title {
        font-size: 32px;
    }

    .tovzea-product-pricing {
        align-items: flex-start;
        flex-direction: column;
    }

    .tovzea-product-discount {
        align-items: flex-start;
    }

    .tovzea-product-final-cta {
        margin: 18px auto 40px;
        padding: 34px 20px;
        border-radius: 22px;
    }

    .tovzea-related-products {
        width: min(100% - 20px, 1180px);
        margin-bottom: 48px;
    }
}

.single-product .site-content > .col-full {
    max-width: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.single-product .content-area {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}


/* Tovzea v1.0.6: premium cards and stacked product landing page */
.site-footer {
    display: none !important;
}

.tovzea-product-card-premium {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(105, 43, 83, .12);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
    box-shadow: 0 22px 55px rgba(67, 16, 54, .10);
}

.tovzea-product-card-premium:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 68px rgba(67, 16, 54, .16);
}

.tovzea-product-card-premium .tovzea-product-media {
    aspect-ratio: 4 / 5.25;
    margin: 8px;
    border-radius: 18px;
}

.tovzea-product-card-premium .tovzea-product-media::after {
    height: 48%;
    background: linear-gradient(180deg, transparent 0%, rgba(31, 5, 24, .50) 100%);
}

.tovzea-product-card-premium .tovzea-product-media img {
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.tovzea-product-card-premium:hover .tovzea-product-media img {
    transform: scale(1.055);
}

.tovzea-card-brand {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: var(--tovzea-plum);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
    backdrop-filter: blur(8px);
}

.tovzea-product-card-premium .tovzea-sale-badge {
    top: 14px;
    right: 14px;
    left: auto;
    z-index: 2;
    padding: 7px 10px;
    background: rgba(77,18,61,.92);
    font-size: 9px;
    letter-spacing: .08em;
}

.tovzea-card-view {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    opacity: .95;
}

.tovzea-card-view b {
    display: grid;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    place-items: center;
    background: rgba(255,255,255,.14);
}

.tovzea-product-card-premium .tovzea-product-content {
    padding: 14px 18px 20px;
}

.tovzea-card-eyebrow {
    margin-bottom: 7px;
    color: var(--tovzea-rose);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .18em;
}

.tovzea-product-card-premium .tovzea-product-content h3 {
    min-height: auto;
    margin-bottom: 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
}

.tovzea-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(77,18,61,.08);
}

.tovzea-card-price-row .tovzea-price {
    margin: 0;
    min-height: auto;
    font-size: 17px;
}

.tovzea-card-delivery {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(45,159,76,.09);
    color: #237d3e;
    font-size: 9px;
    font-weight: 800;
}

.tovzea-product-card-premium .tovzea-card-actions {
    margin-top: 14px;
    gap: 8px;
}

.tovzea-product-card-premium .button.tovzea-card-btn {
    min-height: 45px;
    border-radius: 12px;
    font-size: 11px;
}

.single-product,
.single-product #page,
.single-product .site-content,
.single-product .site-main,
.single-product .content-area,
.single-product div.product.tovzea-product-landing {
    background: var(--tovzea-cream) !important;
}

.tovzea-product-brandbar {
    min-height: 78px;
    padding: 24px 20px 16px;
    border: 0;
    background: transparent !important;
}

.tovzea-product-brandbar a {
    font-size: 27px;
    letter-spacing: .20em;
}

.tovzea-product-gallery-section {
    width: min(780px, 100%);
    margin-top: 8px;
}

.tovzea-stacked-gallery {
    display: grid;
    gap: 20px;
}

.tovzea-stacked-image {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(182,122,114,.18);
    border-radius: 26px;
    background: #f5eaea;
    box-shadow: 0 24px 62px rgba(77,18,61,.10);
}

.tovzea-stacked-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: inherit;
    pointer-events: none;
}

.tovzea-stacked-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery__wrapper,
.single-product .flex-control-thumbs,
.single-product .woocommerce-product-gallery__trigger {
    display: none !important;
}

.tovzea-product-info-section {
    margin-top: 24px;
    padding: 34px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(10px);
}

.tovzea-product-pricing {
    display: block;
    padding: 14px 0 20px;
}

.tovzea-product-discount,
.tovzea-product-short-description,
.tovzea-product-info-section .tovzea-product-assurance {
    display: none !important;
}

.tovzea-inline-product-details {
    padding: 22px 0 4px;
}

.tovzea-inline-product-details h2 {
    margin: 0 0 14px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 3.6vw, 32px);
    font-weight: 500;
}

.tovzea-inline-product-details .tovzea-section-eyebrow {
    margin-bottom: 7px;
}

.tovzea-product-purchase-box {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(77,18,61,.09);
}

.tovzea-product-purchase-box form.cart .quantity {
    display: none !important;
}

.tovzea-product-purchase-box form.cart {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tovzea-product-purchase-box .single_add_to_cart_button,
.tovzea-product-purchase-box .tovzea-single-buy-now {
    min-height: 54px;
    margin: 0 !important;
}

.tovzea-product-specs-section {
    margin-top: 22px;
    background: rgba(255,255,255,.72);
}

@media (max-width: 760px) {
    .tovzea-product-card-premium {
        border-radius: 18px;
    }

    .tovzea-product-card-premium .tovzea-product-media {
        margin: 6px;
        border-radius: 14px;
    }

    .tovzea-card-brand,
    .tovzea-product-card-premium .tovzea-sale-badge {
        top: 10px;
        padding: 5px 7px;
        font-size: 7px;
    }

    .tovzea-card-brand { left: 10px; }
    .tovzea-product-card-premium .tovzea-sale-badge { right: 10px; }

    .tovzea-card-view {
        right: 10px;
        bottom: 10px;
        left: 10px;
        font-size: 10px;
    }

    .tovzea-card-view b {
        width: 24px;
        height: 24px;
    }

    .tovzea-product-card-premium .tovzea-product-content {
        padding: 10px 10px 13px;
    }

    .tovzea-product-card-premium .tovzea-product-content h3 {
        margin-bottom: 9px;
        font-size: 15px;
    }

    .tovzea-card-eyebrow {
        font-size: 7px;
    }

    .tovzea-card-price-row {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 9px;
    }

    .tovzea-card-delivery {
        font-size: 8px;
    }

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

    .tovzea-product-brandbar {
        min-height: 64px;
        padding: 18px 12px 10px;
    }

    .tovzea-product-brandbar a {
        font-size: 22px;
    }

    .tovzea-product-gallery-section {
        margin-top: 4px;
    }

    .tovzea-stacked-gallery {
        gap: 12px;
    }

    .tovzea-stacked-image {
        border-radius: 18px;
    }

    .tovzea-product-info-section {
        margin-top: 14px;
        padding: 22px 17px;
        border-radius: 20px;
    }

    .tovzea-product-purchase-box form.cart {
        grid-template-columns: 1fr;
    }
}


/* Tovzea v1.0.7 refinements */
.tovzea-product-card-premium .tovzea-product-media {
    aspect-ratio: 4 / 5.25;
    background: linear-gradient(180deg, #fff 0%, #f8eeee 100%);
}

.tovzea-product-card-premium .tovzea-product-media::after {
    height: 24%;
    background: linear-gradient(180deg, transparent 0%, rgba(31, 5, 24, .28) 100%);
}

.tovzea-product-card-premium .tovzea-product-media img {
    width: 100%;
    height: 100%;
    padding: 6px;
    object-fit: contain !important;
    object-position: center;
    transform: none !important;
}

.tovzea-product-card-premium:hover .tovzea-product-media img {
    transform: none !important;
}

.tovzea-card-brand,
.tovzea-product-card-premium .tovzea-sale-badge {
    display: none !important;
}

.tovzea-card-size {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    background: rgba(255,255,255,.90);
    color: var(--tovzea-plum);
    box-shadow: 0 8px 22px rgba(77,18,61,.09);
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.tovzea-card-price-row {
    display: block;
    text-align: center;
}

.tovzea-card-price-row .tovzea-price {
    justify-content: center;
    text-align: center;
}

.tovzea-card-delivery {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 10px auto 0;
    padding: 8px 16px;
    border: 1px solid rgba(35,125,62,.14);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(45,159,76,.12), rgba(45,159,76,.07));
    color: #237d3e;
    box-shadow: 0 7px 18px rgba(35,125,62,.07);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.tovzea-stacked-image {
    aspect-ratio: auto !important;
    overflow: hidden;
    background: transparent;
}

.tovzea-stacked-image img {
    display: block;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center;
}

.tovzea-inline-product-details {
    padding-top: 22px;
}

.tovzea-inline-product-details .tovzea-section-eyebrow {
    margin: 0 0 22px;
    color: var(--tovzea-plum);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(25px, 4vw, 38px);
    font-weight: 600;
    letter-spacing: .05em;
    text-align: center;
}

.tovzea-inline-product-details h2,
.tovzea-product-specs-section,
.tovzea-product-final-cta {
    display: none !important;
}

@media (max-width: 760px) {
    .tovzea-card-size {
        top: 10px;
        left: 10px;
        padding: 5px 9px;
        font-size: 8px;
    }

    .tovzea-card-delivery {
        margin-top: 8px;
        padding: 6px 11px;
        font-size: 8px;
    }

    .tovzea-stacked-image {
        border-radius: 18px;
    }

    .tovzea-inline-product-details .tovzea-section-eyebrow {
        margin-bottom: 16px;
        font-size: 27px;
    }
}
