.vwm-business-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.vwm-business-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vwm-business-card header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    align-items: flex-start;
}

.vwm-business-card .vwm-business-logo img {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.vwm-business-card .vwm-business-title {
    font-size: 1.25rem;
    margin: 0;
    color: #1f2937;
}

.vwm-business-card .vwm-business-alt-name {
    margin: 0;
    color: #6b7280;
}

.vwm-business-rating-summary {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
    margin-bottom: 0;
}

.vwm-business-rating-summary .vwm-rating-value {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.vwm-business-rating-summary .vwm-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #FFC107;
}

.vwm-business-rating-summary .vwm-stars svg {
    width: 18px;
    height: 18px;
}

.vwm-business-rating-summary .vwm-rating-count {
    font-size: 14px;
    color: #4b5563;
}

.vwm-business-card .vwm-business-description {
    color: #4b5563;
}

.vwm-business-card .vwm-business-address,
.vwm-business-card .vwm-business-geo {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0.25rem 0;
}

.vwm-screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* GLOBAL NAV WRAPPER + BUTTON STYLE (applies to all nav sections) */
.vwm-nav-bar,
.vwm-tabs,
.vwm-section-nav,
.business-tabs .business-tabs__nav,
.vwm-product-tabs .vwm-product-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    justify-content: flex-start;
    padding: 0.85rem 1.25rem;
    margin: 0 0 1.5rem;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 40px;
}

.lb-nav-button,
.vwm-nav-button,
.vwm-nav-bar button,
.vwm-tabs button,
.vwm-section-nav button,
.business-tabs .business-tabs__button,
.vwm-product-tabs .vwm-product-tabs__button {
    background-color: #ffffff;
    border: 1px solid #d5d5d5;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    color: #111827;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    white-space: nowrap;
}

.vwm-product-tabs__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
}

.lb-nav-button:hover,
.vwm-nav-button:hover,
.vwm-nav-bar button:hover,
.vwm-tabs button:hover,
.vwm-section-nav button:hover,
.business-tabs .business-tabs__button:hover,
.vwm-product-tabs .vwm-product-tabs__button:hover,
.lb-nav-button:focus-visible,
.vwm-nav-button:focus-visible,
.vwm-nav-bar button:focus-visible,
.vwm-tabs button:focus-visible,
.vwm-section-nav button:focus-visible,
.business-tabs .business-tabs__button:focus-visible,
.vwm-product-tabs .vwm-product-tabs__button:focus-visible {
    background-color: #f1f1f1;
    border-color: #c5c5c5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.lb-nav-button.active,
.vwm-nav-button.active,
.vwm-nav-bar button.active,
.vwm-tabs button.active,
.vwm-section-nav button.active,
.business-tabs .business-tabs__button[aria-selected="true"],
.vwm-product-tabs .vwm-product-tabs__button[aria-selected="true"],
.business-tabs .business-tabs__button.active,
.vwm-product-tabs .vwm-product-tabs__button.active {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.25);
}

.vwm-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    align-items: start;
    justify-content: center;
    justify-items: center;
}

.vwm-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, 360px);
    min-height: 560px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vwm-product-card__link {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.vwm-product-card__link:focus,
.vwm-product-card__link:hover,
.vwm-product-card__link:active {
    text-decoration: none;
}

.vwm-product-card__media-wrap {
    position: relative;
    background: #f8fafc;
}

.vwm-product-card__media {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.vwm-product-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vwm-product-card__image--placeholder {
    background: linear-gradient(135deg, #e2e8f0, #cbd5f5);
}

.vwm-product-card__badges {
    position: absolute;
    inset: 1rem 1rem auto 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    z-index: 2;
}

.vwm-product-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.vwm-product-card__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.vwm-product-card__manufacturer {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.vwm-product-card__manufacturer-name {
    letter-spacing: 0.18em;
}

.vwm-product-card__membership-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.vwm-product-card__membership-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}

.vwm-product-card__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.vwm-product-card__description {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vwm-product-card__description-more {
    display: inline-block;
    margin-left: 0.4rem;
    color: #1d4ed8;
    font-weight: 600;
    white-space: nowrap;
}

.vwm-product-card__specs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.vwm-product-card__spec {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.75rem;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.vwm-product-card__spec-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.vwm-product-card__spec-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
}

.vwm-product-card__manufacturer,
.vwm-product-card__title,
.vwm-product-card__description,
.vwm-product-card__description-more,
.vwm-product-card__spec-text {
    text-decoration: none;
}

.vwm-product-card:hover,
.vwm-product-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.vwm-product-card:hover .vwm-product-card__image,
.vwm-product-card:focus-within .vwm-product-card__image {
    transform: scale(1.06);
}

.vwm-product-card__link:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.65);
    border-radius: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 640px) {
    .vwm-product-card__content {
        padding: 1.5rem;
    }

    .vwm-product-card__title {
        font-size: 1.15rem;
    }

    .vwm-product-card__specs {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

.vwm-product-single {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.vwm-product-single__article {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vwm-product-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
}

.vwm-product-hero__media {
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.vwm-product-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vwm-product-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.15), rgba(15, 118, 225, 0.25));
}

.vwm-product-header {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.vwm-product-header__eyebrow {
    margin: 0;
    color: #22d3ee;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.vwm-product-header__eyebrow a {
    color: inherit;
    text-decoration: none;
}

.vwm-product-header__country {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.15rem;
    line-height: 1;
}

.vwm-product-header__eyebrow a:hover,
.vwm-product-header__eyebrow a:focus-visible {
    color: #0ea5e9;
    text-decoration: none;
}

.vwm-product-header__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0;
    color: #0f172a;
}

.vwm-product-header__summary {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}

.vwm-showcase-single {
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem) 3rem;
    background: linear-gradient(180deg, #0f172a 0%, #0f172a 20%, #f8fafc 20%, #f8fafc 100%);
}

.vwm-showcase-single__article {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vwm-showcase-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 340px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.25);
}

.vwm-showcase-hero__media {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a, #0ea5e9);
    background-size: cover;
    background-position: center;
    filter: brightness(0.92);
    transform: scale(1.02);
}

.vwm-showcase-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.4), rgba(8, 47, 73, 0.2) 40%, rgba(255, 255, 255, 0) 70%);
}

.vwm-showcase-header {
    margin-top: -120px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.1rem, 2.5vw, 2rem);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid #e2e8f0;
}

.vwm-showcase-header__content {
    display: grid;
    gap: 0.6rem;
    max-width: 780px;
}

.vwm-showcase-header__eyebrow {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #22d3ee;
}

.vwm-showcase-header__eyebrow a {
    color: inherit;
    text-decoration: none;
}

.vwm-showcase-header__location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #0f172a;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
}

.vwm-showcase-header__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #ecfeff;
    border: 1px solid #bae6fd;
    font-size: 1.1rem;
    line-height: 1;
}

.vwm-showcase-header__title {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3rem);
    color: #0f172a;
}

.vwm-showcase-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: #334155;
    font-weight: 600;
}

.vwm-showcase-header__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.vwm-showcase-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.vwm-showcase-body {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 1.5rem;
}

.vwm-showcase-panel {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
    padding: clamp(1.25rem, 3vw, 2rem);
    display: grid;
    gap: 1rem;
}

.vwm-showcase-panel__header {
    display: grid;
    gap: 0.35rem;
}

.vwm-showcase-panel__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #22d3ee;
    font-weight: 700;
    font-size: 0.85rem;
}

.vwm-showcase-panel__title {
    margin: 0;
    font-size: 1.7rem;
    color: #0f172a;
}

.vwm-showcase-panel__content {
    color: #1f2937;
    line-height: 1.75;
}

.vwm-showcase-panel__content p {
    margin-top: 0;
}

.vwm-showcase-panel__content--rich > * + * {
    margin-top: 0.8rem;
}

.vwm-showcase-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: clamp(320px, 60vw, 560px);
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.1), transparent 38%), #0f172a;
    border: 1px solid #0ea5e9;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

.vwm-showcase-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.vwm-showcase-slider__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    background: #0f172a;
}

.vwm-showcase-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.vwm-showcase-slider__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0f172a;
}

.vwm-showcase-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #e2e8f0;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}

.vwm-showcase-slider__nav:hover,
.vwm-showcase-slider__nav:focus-visible {
    background: rgba(14, 165, 233, 0.9);
    color: #ffffff;
    outline: none;
    transform: translateY(-50%) scale(1.04);
}

.vwm-showcase-slider__nav--prev {
    left: 0.75rem;
}

.vwm-showcase-slider__nav--next {
    right: 0.75rem;
}

.vwm-showcase-slider__dots {
    position: absolute;
    bottom: 0.55rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.vwm-showcase-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid #e2e8f0;
    background: rgba(226, 232, 240, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vwm-showcase-slider__dot.is-active {
    background: #0ea5e9;
    border-color: #0ea5e9;
    transform: translateY(-1px);
}

.vwm-showcase-slider__dot:hover,
.vwm-showcase-slider__dot:focus-visible {
    background: #38bdf8;
    border-color: #38bdf8;
    outline: none;
}

.vwm-showcase-details {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.vwm-showcase-details__item {
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.vwm-showcase-details__item dt {
    margin: 0 0 0.25rem;
    font-weight: 700;
    color: #475569;
}

.vwm-showcase-details__item dd {
    margin: 0;
    font-weight: 600;
    color: #0f172a;
}

.vwm-showcase-panel--details {
    align-self: start;
}

.vwm-showcase-gallery {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
    padding: clamp(1.25rem, 3vw, 2rem);
    display: grid;
    gap: 1rem;
}

.vwm-showcase-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.vwm-showcase-gallery__item {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.vwm-showcase-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vwm-showcase-comments {
    display: grid;
    gap: 1rem;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.vwm-tiktok-comments__list {
    display: grid;
    gap: 1rem;
}

.vwm-tiktok-comment {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.vwm-tiktok-comment__avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.vwm-tiktok-comment__body {
    display: grid;
    gap: 0.35rem;
}

.vwm-tiktok-comment__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vwm-tiktok-comment__author {
    font-weight: 700;
    color: #0f172a;
}

.vwm-tiktok-comment__time {
    color: #94a3b8;
    font-size: 0.9rem;
}

.vwm-tiktok-comment__content {
    color: #1f2937;
    line-height: 1.6;
}

.vwm-tiktok-comment__footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vwm-tiktok-comment__action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
}

.vwm-tiktok-comment__action svg {
    width: 18px;
    height: 18px;
    fill: #ea3323;
}

.vwm-tiktok-comment__action:hover,
.vwm-tiktok-comment__action:focus-visible {
    color: #ea3323;
}

.vwm-tiktok-comment__reply a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.vwm-tiktok-comment__reply a:hover,
.vwm-tiktok-comment__reply a:focus-visible {
    color: #0ea5e9;
}

.vwm-tiktok-comment-form {
    display: grid;
    gap: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.1rem 1.25rem;
}

.vwm-tiktok-comment-form__field {
    display: grid;
    gap: 0.35rem;
}

.vwm-tiktok-comment-form__label {
    font-weight: 700;
    color: #475569;
}

.vwm-tiktok-comment-form__input,
.vwm-tiktok-comment-form__textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0.8rem 0.95rem;
    font-size: 1rem;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vwm-tiktok-comment-form__input:focus,
.vwm-tiktok-comment-form__textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.vwm-tiktok-comment-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    align-items: center;
}

.vwm-tiktok-comment-form__submit {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.35);
}

.vwm-tiktok-comment-form__submit:hover,
.vwm-tiktok-comment-form__submit:focus-visible {
    background: linear-gradient(135deg, #1d4ed8, #0284c7);
}

@media (max-width: 980px) {
    .vwm-showcase-header {
        margin-top: -80px;
    }

    .vwm-showcase-body {
        grid-template-columns: 1fr;
    }

    .vwm-showcase-slider {
        aspect-ratio: 4 / 3;
    }

    .vwm-showcase-slider__nav {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 720px) {
    .vwm-showcase-single {
        background: #f8fafc;
    }

    .vwm-showcase-header {
        margin-top: -40px;
        padding: 1.25rem;
    }

    .vwm-showcase-header__title {
        font-size: clamp(1.75rem, 5vw, 2.4rem);
    }

    .vwm-showcase-hero {
        min-height: 260px;
    }
}

.vwm-product-header__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vwm-product-header__categories li {
    background: #ecfeff;
    color: #0f172a;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.vwm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.vwm-breadcrumb a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.vwm-breadcrumb a:hover,
.vwm-breadcrumb a:focus-visible {
    text-decoration: underline;
}

.vwm-breadcrumb span[aria-hidden="true"] {
    color: #cbd5f5;
}

.vwm-product-tabs {
    display: grid;
    gap: 1.5rem;
}

.vwm-product-tab__panel {
    display: none;
    animation: vwm-product-panel-fade 0.3s ease;
}

.vwm-product-tab__panel.is-active {
    display: block;
}

@keyframes vwm-product-panel-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vwm-product-section {
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border-radius: 28px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
}

.vwm-product-section__header {
    margin-bottom: 1.5rem;
}

.vwm-product-section__header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #0f172a;
}

.vwm-product-section__header p {
    margin: 0.25rem 0 0;
    color: #475569;
}

.vwm-product-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.vwm-product-spec-grid__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.vwm-product-spec-grid__icon {
    font-size: 1.5rem;
}

.vwm-product-spec-grid__text {
    font-weight: 600;
    color: #0f172a;
}

.vwm-product-section__content {
    color: #1f2937;
}

.vwm-product-section__content p {
    line-height: 1.7;
}

.vwm-product-details-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.vwm-product-details-table th,
.vwm-product-details-table td {
    padding: 0.9rem 1rem;
    text-align: left;
}

.vwm-product-details-table th {
    width: 30%;
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
}

.vwm-product-config-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.vwm-product-config-card {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.vwm-product-config-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.vwm-product-config-card__subtitle {
    margin: 0.4rem 0 1rem;
    color: #64748b;
}

.vwm-product-config-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vwm-product-config-card__list li {
    background: #f1f5f9;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
}

.vwm-product-config-card__list--stacked {
    flex-direction: column;
    gap: 0.85rem;
}

.vwm-product-config-card__list--stacked li {
    background: transparent;
    border-radius: 0;
    padding: 0;
    font-weight: 500;
    color: #0f172a;
}

.vwm-product-config-card__list--stacked span {
    display: block;
    color: #475569;
    font-weight: 400;
}


.vwm-product-inventory-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
}

.vwm-product-inventory-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.5rem;
    background: #ffffff;
    color: #0f172a;
    min-height: 100%;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.vwm-product-inventory-card.is-targeted {
    border-color: #2563eb;
    box-shadow: 0 24px 65px rgba(37, 99, 235, 0.2);
}

.vwm-product-inventory-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vwm-product-inventory-card__header {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: stretch;
    height: 80px;
}

.vwm-product-inventory-card__header-col--media {
    display: flex;
    align-items: center;
    align-self: stretch;
    max-width: 80px;
}

.vwm-product-inventory-card__header-col--media > * {
    width: 100%;
    height: 100%;
}

.vwm-product-inventory-card__header-col--location {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vwm-product-inventory-card__header-col--quantity {
    justify-self: end;
}

.vwm-product-inventory-card__location-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vwm-product-inventory-card__flag {
    font-size: 1.75rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.vwm-product-inventory-card__thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.vwm-product-inventory-card__header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #0f172a;
}

.vwm-product-inventory-card__meta {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    display: inline-flex;
    align-items: flex-start;
    gap: 0.35rem;
}

.vwm-product-inventory-card__meta-icon {
    line-height: 1;
    font-size: 1rem;
    color: #475569;
}

.vwm-product-inventory-card__quantity {
    margin: 0;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}

.vwm-product-inventory-card__quantity span {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
}

.vwm-product-inventory-card__quantity strong {
    line-height: 1.1;
}

.vwm-product-inventory-card__updated {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: right;
    line-height: 1.1;
}

.vwm-product-inventory-card__table-wrapper {
    margin-top: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    overflow-x: auto;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.vwm-product-inventory-card__table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 640px;
}

.vwm-product-inventory-card__table tr.is-targeted-row {
    background: rgba(37, 99, 235, 0.08);
}

.vwm-product-inventory-card__table th,
.vwm-product-inventory-card__table td {
    text-align: left;
    padding: 0.45rem 0.65rem;
    font-size: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.vwm-product-inventory-card__table th:last-child,
.vwm-product-inventory-card__table td:last-child {
    text-align: center;
}

.vwm-product-inventory-card__table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    background: #f8fafc;
    font-weight: 700;
}

.vwm-inventory-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 90px;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid #cbd5f5;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.vwm-inventory-contact-button:hover,
.vwm-inventory-contact-button:focus-visible {
    background: #ffffff;
    color: #0f172a;
    border-color: #94a3b8;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    outline: none;
}

.vwm-product-inventory-card__thumbnail--placeholder {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #e2e8f0;
}

.vwm-product-inventory-card__cta {
    display: flex;
    align-items: center;
}

.vwm-product-inventory-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: #22d3ee;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.vwm-product-inventory-card__button:hover,
.vwm-product-inventory-card__button:focus-visible {
    transform: translateY(-2px);
}

.vwm-product-section__empty {
    margin: 0;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px dashed #cbd5f5;
    color: #475569;
}

body.vwm-has-modal {
    overflow: hidden;
}

.vwm-review-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.vwm-review-modal[hidden] {
    display: none;
}

.vwm-review-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
}

.vwm-review-modal__dialog {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    max-width: 640px;
    width: min(92vw, 640px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.3);
    z-index: 1;
}

.vwm-review-modal__title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    color: #0f172a;
}

.vwm-review-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #0f172a;
}

.vwm-review-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vwm-review-modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.vwm-review-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #475569;
}

.vwm-review-modal__field input,
.vwm-review-modal__field textarea {
    border: 1px solid #cbd5f5;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: #0f172a;
    background: #f8fafc;
}

.vwm-review-modal__field textarea {
    resize: vertical;
}

.vwm-review-modal__rating-input {
    display: inline-flex;
    gap: 0.25rem;
}

.vwm-review-modal__rating-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.vwm-review-modal__rating-value {
    font-weight: 600;
    color: #0f172a;
    background: #e0f2fe;
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    min-width: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vwm-review-modal__notice {
    min-height: 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.vwm-review-modal__notice.is-visible {
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
}

.vwm-review-modal__notice--success {
    background: #dcfce7;
    color: #166534;
}

.vwm-review-modal__notice--error {
    background: #fee2e2;
    color: #991b1b;
}

.vwm-review-modal__notice--warning {
    background: #fef9c3;
    color: #854d0e;
}

.vwm-review-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.business-actions__like,
.business-actions__engagement,
.vwm-product-actions {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.business-actions__like .vwm-like-button,
.business-actions__engagement .vwm-like-button,
.business-actions__engagement .vwm-bookmark-button,
.vwm-product-actions .vwm-like-button,
.vwm-product-actions .vwm-bookmark-button,
.vwm-like-button,
.vwm-bookmark-button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0;
    border: none !important;
    background: transparent !important;
    background-color: transparent !important;
    appearance: none;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    box-shadow: none !important;
}

.vwm-like-button:hover,
.vwm-like-button:focus,
.vwm-bookmark-button:hover,
.vwm-bookmark-button:focus {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.vwm-like-button:focus-visible,
.vwm-bookmark-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(234, 51, 35, 0.25);
    border-radius: 6px;
}

.vwm-like-button__icon,
.vwm-bookmark-button__icon {
    display: inline-flex;
    transition: transform 0.18s ease;
}

.vwm-like-button:hover .vwm-like-button__icon,
.vwm-like-button:focus-visible .vwm-like-button__icon,
.vwm-bookmark-button:hover .vwm-bookmark-button__icon,
.vwm-bookmark-button:focus-visible .vwm-bookmark-button__icon {
    transform: scale(1.1);
}

.vwm-like-button__icon svg,
.vwm-bookmark-button__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.vwm-like-button__icon--empty,
.vwm-bookmark-button__icon--empty {
    display: inline-flex;
}

.vwm-like-button__icon--filled,
.vwm-bookmark-button__icon--filled {
    display: none;
}

.vwm-like-button.is-liked .vwm-like-button__icon--filled,
.vwm-bookmark-button.has-bookmarks .vwm-bookmark-button__icon--filled {
    display: inline-flex;
    filter: drop-shadow(0 6px 10px rgba(234, 51, 35, 0.4));
}

.vwm-like-button.is-liked .vwm-like-button__icon--empty,
.vwm-bookmark-button.has-bookmarks .vwm-bookmark-button__icon--empty {
    display: none;
}

.vwm-like-button__stat,
.vwm-bookmark-button__stat {
    display: inline-flex;
    align-items: center;
    font-variant-numeric: tabular-nums;
    color: #4b5563;
    font-weight: 600;
    white-space: nowrap;
}

.vwm-like-button__stat[hidden],
.vwm-bookmark-button__stat[hidden] {
    display: none;
}

.vwm-like-button,
.business-actions__like .vwm-like-button,
.vwm-product-actions .vwm-like-button {
    color: #ea3323;
}

.vwm-bookmark-button,
.business-actions__engagement .vwm-bookmark-button,
.vwm-product-actions .vwm-bookmark-button {
    color: #ea3323;
}

.vwm-product-actions {
    margin-top: 1rem;
}

.vwm-review-modal__primary,
.vwm-review-modal__secondary {
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.75rem;
    font-weight: 600;
    cursor: pointer;
}

.vwm-review-modal__primary {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    box-shadow: 0 18px 38px -25px rgba(37, 99, 235, 0.75);
}

.vwm-review-modal__primary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.vwm-review-modal__secondary {
    background: transparent;
    color: #0f172a;
    border: 1px solid #cbd5f5;
}

.vwm-review-modal__target {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #475569;
}

.vwm-review-modal__target strong {
    font-size: 1.05rem;
    color: #0f172a;
}

.vwm-inventory-contact-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 1000;
}

.vwm-inventory-contact-modal[hidden] {
    display: none;
}

.vwm-inventory-contact-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
}

.vwm-inventory-contact-modal__dialog {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    max-width: 640px;
    width: min(100%, 640px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vwm-inventory-contact-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #0f172a;
}

.vwm-inventory-contact-form__message {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vwm-inventory-contact-form__selected {
    font-size: 0.85rem;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-top: 0.65rem;
}

.vwm-inventory-contact-form__selected p {
    margin: 0 0 0.5rem;
    font-weight: 600;
    color: #0f172a;
}

.vwm-inventory-contact-form__selected ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.25rem;
}

.vwm-inventory-contact-form__selected li {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
}

.vwm-inventory-contact-form__selected li span {
    min-width: 120px;
    color: #0f172a;
    font-weight: 600;
}

.vwm-inventory-contact-form__selected li strong {
    font-weight: 500;
    color: #1e293b;
}

.vwm-inventory-contact-form__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.vwm-inventory-contact-form__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.vwm-inventory-contact-form__submit,
.vwm-inventory-contact-form__close-button {
    border-radius: 999px;
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    cursor: pointer;
}

.vwm-inventory-contact-form__submit {
    background: #0f172a;
    color: #ffffff;
}

.vwm-inventory-contact-form__submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.vwm-inventory-contact-form__close-button {
    background: #e2e8f0;
    color: #0f172a;
}

.vwm-product-reviews {
    background: #ffffff;
    border-radius: 22px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 25px 60px -45px rgba(15, 23, 42, 0.65);
}

.vwm-product-reviews__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-tab__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-tab__summary {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #475569;
    font-weight: 600;
}

.review-tab__summary .vwm-star-rating {
    font-size: 1.1rem;
}

.review-tab__summary-stat {
    font-size: 0.95rem;
}

.review-tab__actions {
    margin-left: auto;
}


.vwm-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0.15rem 0 0.45rem;
}

.vwm-card-rating .vwm-star-rating {
    font-size: 1rem;
}

.vwm-card-rating__value {
    font-size: 1.05rem;
}

.vwm-card-rating__count {
    color: #475569;
    font-size: 0.9rem;
}

.vwm-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.95rem 1.9rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 18px 40px -22px rgba(37, 99, 235, 0.65);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vwm-review-button:hover,
.vwm-review-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -20px rgba(14, 165, 233, 0.45);
    outline: none;
}

.vwm-review-button--disabled,
.vwm-review-button:disabled {
    background: #cbd5f5;
    color: #475569;
    cursor: not-allowed;
    opacity: 0.85;
    transform: none;
    box-shadow: none;
}

.vwm-star-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.vwm-star-rating__star {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5f5;
}

.vwm-star-rating__star::before,
.vwm-star-rating__star::after {
    content: '★';
    font-size: 1.05rem;
    line-height: 1;
    position: absolute;
    inset: 0;
    text-align: center;
}

.vwm-star-rating__star::after {
    display: none;
}

.vwm-star-rating__star--full {
    color: #facc15;
}

.vwm-star-rating__star--half::before {
    color: #cbd5f5;
}

.vwm-star-rating__star--half::after {
    display: block;
    color: #facc15;
    width: 50%;
    overflow: hidden;
}

.vwm-star-rating__star--empty {
    color: #cbd5f5;
}

.vwm-star-input {
    border: none;
    background: transparent;
    padding: 0.1rem;
    margin: 0;
    cursor: pointer;
}

.vwm-star-input:focus-visible {
    outline: 2px solid #0ea5e9;
    border-radius: 6px;
}

.review-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.review-card__author {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: #0f172a;
}

.review-card__user-id {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    color: #0f172a;
}

.review-card__rating .vwm-star-rating {
    font-size: 1rem;
}

.review-card__rating-value {
    font-size: 1rem;
    color: #475569;
}

.review-card__content {
    color: #0f172a;
    line-height: 1.6;
}

.review-card__content p {
    margin: 0;
}

.vwm-product-qa-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vwm-product-qa-list__item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.vwm-product-qa-list__question-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.vwm-product-qa-list__question-meta time {
    font-size: 0.85rem;
    color: #64748b;
}

.vwm-product-qa-list__question-content,
.vwm-product-qa-list__answer-content {
    color: #1f2937;
    line-height: 1.6;
}

.vwm-product-qa-list__answers {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vwm-product-qa-list__answer {
    background: #f8fafc;
    border-radius: 12px;
    padding: 0.85rem 1rem;
}

.vwm-product-qa-list__answer header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.vwm-product-qa-form__wrap {
    margin-top: 2rem;
}

.vwm-product-qa-form {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.vwm-product-qa-form p {
    margin: 0 0 1rem;
}

.vwm-product-qa-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.vwm-product-qa-form input,
.vwm-product-qa-form textarea {
    width: 100%;
    border: 1px solid #cbd5f5;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #f8fafc;
    color: #0f172a;
}

.vwm-product-qa-form .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.vwm-product-qa-form .comment-form-cookies-consent input {
    width: auto;
    accent-color: #2563eb;
    box-shadow: none;
}

.vwm-product-qa-form__submit,
.vwm-product-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: #0f172a;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vwm-product-qa-form__submit:hover,
.vwm-product-qa-form__submit:focus-visible,
.vwm-product-contact-form__submit:hover,
.vwm-product-contact-form__submit:focus-visible {
    background: #111111;
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
}

.vwm-product-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.75rem;
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

.vwm-product-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.vwm-product-contact-form__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    border: 1px solid #d4d8e4;
    background: #f3f6fb;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    width: auto;
    cursor: default;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
}

.vwm-product-contact-form__chip:disabled {
    opacity: 1;
    color: #0f172a;
}

.vwm-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 600;
    color: #0f172a;
}

.vwm-form-field span {
    font-size: 0.95rem;
}

.vwm-form-field input,
.vwm-form-field textarea {
    border: 1px solid #d4d8e4;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: #0f172a;
}

.vwm-form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.vwm-form-field--full {
    width: 100%;
}

.vwm-product-qa-form input:focus,
.vwm-product-qa-form textarea:focus,
.vwm-product-contact-form input:focus,
.vwm-product-contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.vwm-product-notice {
    border-radius: 16px;
    padding: 1rem 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.vwm-product-notice--success {
    background: #ecfdf5;
    border: 1px solid #34d399;
    color: #065f46;
}

.vwm-product-notice--error {
    background: #fef2f2;
    border: 1px solid #f87171;
    color: #991b1b;
}

.vwm-product-notice--warning {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    color: #92400e;
}

.vwm-product-contact-form__result {
    margin-bottom: 1rem;
}

.vwm-product-contact-form__result:empty {
    display: none;
}

.vwm-product-card .vwm-feature-tag {
    display: inline-block !important;
    padding: 4px 10px;
    background-color: #E8F0FF;
    color: #0053FF;
    border-radius: 16px;
    font-size: 12px;
    margin-right: 6px;
    margin-bottom: 6px;
    width: auto !important;
    white-space: nowrap;
}

.vwm-product-card .vwm-feature-tag span,
.vwm-product-card .vwm-feature-tag div {
    display: inline-block !important;
    width: auto !important;
}

/* Business detail card & floating membership badge */
body.single-vwm_business .business-card {
    --vwm-membership-badge-width: clamp(180px, 52vw, 220px);
    --vwm-business-card-padding: clamp(1.75rem, 5vw, 3rem);

    padding: 0;
    overflow: visible;
}

body.single-vwm_business .business-card > .vwm-business-card--detail {
    position: relative;
    padding: var(--vwm-business-card-padding);
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

body.single-vwm_business .vwm-membership-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: var(--vwm-membership-badge-width);
    display: block;
    line-height: 0;
}

body.single-vwm_business .vwm-membership-badge svg {
    width: 100%;
    height: auto;
    display: block;
}

body.single-vwm_business .business-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.25rem, 4vw, 1.75rem);
    align-items: flex-start;
}

body.single-vwm_business .business-logo {
    width: 150px;
    max-width: 38vw;
    border-radius: var(--vwm-radius-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(14, 165, 233, 0.04));
    border: 1px solid rgba(37, 99, 235, 0.08);
    display: grid;
    place-items: center;
    overflow: hidden;
}

body.single-vwm_business .business-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0.85rem;
}

body.single-vwm_business .business-heading {
    display: grid;
    gap: 0.4rem;
    text-align: left;
}

body.single-vwm_business .business-heading h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    color: var(--vwm-secondary);
    font-weight: 700;
    letter-spacing: -0.015em;
}

body.single-vwm_business .business-heading .business-alt-name {
    color: var(--vwm-muted);
    font-size: clamp(1rem, 2.4vw, 1.25rem);
    font-weight: 500;
}

@media (max-width: 600px) {
    .business-tabs .business-tabs__nav,
    .vwm-product-tabs .vwm-product-tabs__nav {
        justify-content: center;
    }

    .business-tabs .business-tabs__button,
    .vwm-product-tabs .vwm-product-tabs__button {
        flex: 1 1 100%;
        margin-right: 0;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .vwm-product-header__country {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1rem;
    }

    .vwm-product-qa-list__item,
    .vwm-product-contact-form {
        padding: 1.25rem;
    }

    .review-tab__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .vwm-review-modal__dialog {
        padding: 1.5rem;
    }
}

/* RFP Response Cards */
:root {
    --vwm-card-bg: #fff;
    --vwm-card-border: #eee;
    --vwm-card-radius: 12px;
    --vwm-card-spacing: 1rem;
    --vwm-card-gap: 1rem;
    --vwm-card-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    --vwm-card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.08);
    --vwm-card-text: #111827;
    --vwm-card-muted: #555;
    --vwm-card-accent: #1a7f37;
}

.vwm-rfp-response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--vwm-card-gap);
    align-items: stretch;
}

.vwm-rfp-card {
    display: block;
    text-decoration: none;
    background: var(--vwm-card-bg);
    border: 1px solid var(--vwm-card-border);
    padding: var(--vwm-card-spacing);
    border-radius: var(--vwm-card-radius);
    transition: all 0.15s ease;
    box-shadow: var(--vwm-card-shadow);
    color: var(--vwm-card-text);
    height: 100%;
}

.vwm-rfp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--vwm-card-shadow-hover);
}

.vwm-rfp-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.vwm-rfp-card__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.vwm-rfp-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vwm-rfp-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
}

.vwm-rfp-card__info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--vwm-card-muted);
    margin-top: 0.35rem;
}

.vwm-rfp-card__info-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vwm-rfp-card__price {
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vwm-card-accent);
    text-align: right;
}

.vwm-rfp-card .vwm-icon {
    font-size: 1rem;
    line-height: 1;
}

.vwm-rfp-card__flag {
    font-size: 1rem;
    line-height: 1;
}

.vwm-rfp-card__description {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #374151;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vwm-rfp-card__footer {
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-end;
}

.vwm-rfp-card__timestamp {
    font-size: 0.85rem;
    color: #6b7280;
}

.vwm-rfp-response-empty {
    text-align: center;
    color: var(--vwm-card-muted);
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    padding: 1.25rem;
    border-radius: var(--vwm-card-radius);
}

/* RFP Response Single */
.vwm-rfp-response-single {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 64px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #0f172a;
    line-height: 1.6;
}

.vwm-rfp-response-single__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 18px;
}

.vwm-rfp-response-single__breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.vwm-rfp-response-single__breadcrumb a:hover,
.vwm-rfp-response-single__breadcrumb a:focus-visible {
    color: #2563eb;
    text-decoration: underline;
}

.vwm-rfp-response-single__breadcrumb-current {
    font-weight: 700;
    color: #0f172a;
}

.vwm-rfp-response-single__breadcrumb span[aria-hidden="true"] {
    opacity: 0.45;
}

.vwm-rfp-response-single__header {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.vwm-rfp-response-single__header-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.vwm-rfp-response-single__eyebrow {
    margin: 0 0 6px;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-transform: uppercase;
    color: #4f46e5;
}

.vwm-rfp-response-single__title {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.vwm-rfp-response-single__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #0f172a;
}

.vwm-rfp-response-single__meta-label {
    font-weight: 700;
    color: #334155;
}

.vwm-rfp-response-single__membership {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #e0f2fe;
    color: #0ea5e9;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.vwm-rfp-response-single__link {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.vwm-rfp-response-single__link:hover,
.vwm-rfp-response-single__link:focus-visible {
    text-decoration: underline;
    color: #1d4ed8;
}

.vwm-rfp-response-single__link--muted {
    color: #475569;
}

.vwm-rfp-response-single__header-actions {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-direction: column;
}

.vwm-rfp-response-single__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.vwm-rfp-response-single__button:hover,
.vwm-rfp-response-single__button:focus-visible {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

.vwm-rfp-response-single__button--ghost {
    background: #fff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

.vwm-rfp-response-single__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 420px;
}

.vwm-rfp-response-single__stat {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.vwm-rfp-response-single__stat-label {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
}

.vwm-rfp-response-single__stat-value {
    margin: 4px 0 0;
    font-weight: 800;
    color: #0f172a;
}

.vwm-rfp-response-single__accordion-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
}

.vwm-rfp-response-single__accordion-control {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #2563eb;
    cursor: pointer;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.vwm-rfp-response-single__accordion-control:hover,
.vwm-rfp-response-single__accordion-control:focus-visible {
    color: #1d4ed8;
    text-decoration: underline;
    outline: none;
}

.vwm-rfp-response-single__accordion-separator {
    color: #94a3b8;
}

.vwm-rfp-response-single__accordion {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.vwm-rfp-response-single__accordion-item + .vwm-rfp-response-single__accordion-item {
    border-top: 1px solid #e2e8f0;
}

.vwm-rfp-response-single__accordion-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    border: 0 !important;
    background: #f8fafc !important;
    text-align: left !important;
    padding: 14px 16px 14px 26px !important;
    color: #0f172a !important;
    transition: padding 0.2s ease, background-color 0.2s ease;
}

.vwm-rfp-response-single__accordion-icon {
    display: flex !important;
    align-items: center !important;
}

.vwm-rfp-response-single__accordion-trigger:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    padding-left: 20px !important;
}

.vwm-rfp-response-single__accordion-item.is-open .vwm-rfp-response-single__accordion-trigger {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    padding-left: 26px !important;
}

.vwm-rfp-response-single__accordion-title {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
}

.vwm-rfp-response-single__accordion-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #e2e8f0;
}

.vwm-rfp-response-single__accordion-bullet svg {
    width: 14px;
    height: 14px;
    fill: #0f172a;
}

.vwm-rfp-response-single__accordion-icon svg {
    width: 20px;
    height: 20px;
    fill: #334155;
    transition: transform 0.2s ease;
}

.vwm-rfp-response-single__accordion-trigger:hover .vwm-rfp-response-single__accordion-icon svg,
.vwm-rfp-response-single__accordion-item.is-open .vwm-rfp-response-single__accordion-icon svg {
    fill: #0f172a;
}

.vwm-rfp-response-single__accordion-item.is-open .vwm-rfp-response-single__accordion-icon svg {
    transform: rotate(180deg);
}

.vwm-rfp-response-single__accordion-panel {
    background: #fff;
    padding: 18px;
    border-top: 1px solid #e2e8f0;
}

.vwm-rfp-response-single__panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.vwm-rfp-response-single__panel-block {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.vwm-rfp-response-single__panel-block--muted {
    background: #f8fafc;
}

.vwm-rfp-response-single__panel-block h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #0f172a;
}

.vwm-rfp-response-single__description {
    color: #0f172a;
    font-size: 16px;
}

.vwm-rfp-response-single__note {
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: 14px;
}

.vwm-rfp-response-single__note-label {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 700;
}

.vwm-rfp-response-single__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #0f172a;
}

.vwm-rfp-response-single__list span {
    font-weight: 700;
    color: #334155;
    margin-right: 6px;
}

.vwm-rfp-response-single__visual {
    margin: 0;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
}

.vwm-rfp-response-single__visual-link {
    display: block;
    position: relative;
}

.vwm-rfp-response-single__visual-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.vwm-rfp-response-single__visual-link:hover .vwm-rfp-response-single__visual-img,
.vwm-rfp-response-single__visual-link:focus-visible .vwm-rfp-response-single__visual-img {
    transform: scale(1.02);
    opacity: 0.95;
}

.vwm-rfp-response-single__visual-hint {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.vwm-rfp-response-single__empty {
    margin: 0;
    color: #475569;
    font-style: italic;
}

.vwm-rfp-response-single__detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vwm-rfp-response-single__detail {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.vwm-rfp-response-single__detail-label {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
}

.vwm-rfp-response-single__detail-value {
    color: #0f172a;
    font-size: 15px;
}

.vwm-rfp-response-single__pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0ea5e9;
    font-weight: 700;
    text-decoration: none;
    margin-right: 6px;
}

.vwm-rfp-response-single__design {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
    align-items: start;
}

.vwm-rfp-response-single__design-card {
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
}

.vwm-rfp-response-single__muted {
    color: #475569;
    margin: 0 0 8px;
}

.vwm-rfp-response-single__showcases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.vwm-rfp-response-single__showcase-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    background: #f8fafc;
}

.vwm-rfp-response-single__showcase-title {
    margin: 0 0 6px;
    font-size: 16px;
    color: #0f172a;
}

.vwm-rfp-response-single__thankyou {
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.vwm-rfp-response-single__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.vwm-rfp-response-single__share {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
}

.vwm-rfp-response-single__share-icons {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.vwm-rfp-response-single__share-link {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.vwm-rfp-response-single__share-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.vwm-rfp-response-single__share-link:hover,
.vwm-rfp-response-single__share-link:focus-visible {
    transform: translateY(-1px);
    color: #2563eb;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

@media (max-width: 900px) {
    .vwm-rfp-response-single__header-top {
        flex-direction: column;
    }

    .vwm-rfp-response-single__title {
        font-size: 28px;
    }

    .vwm-rfp-response-single__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .vwm-rfp-response-single__panel-grid,
    .vwm-rfp-response-single__detail-grid,
    .vwm-rfp-response-single__design {
        grid-template-columns: 1fr;
    }

    .vwm-rfp-response-single__breadcrumb {
        font-size: 13px;
    }

    .vwm-rfp-response-single__accordion-trigger {
        font-size: 16px;
    }

    .vwm-rfp-response-single__footer {
        justify-content: center;
    }
}
