.vd-breadcrumb {
    background: var(--warm-gray);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border);
    /* margin-top: calc(var(--nav-height) + var(--topbar-height)); */
}

.vd-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    color: var(--text-muted);
    min-width: 0;
}

.vd-breadcrumb-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

.vd-breadcrumb-inner a:hover {
    color: var(--rani-pink);
}

.vd-breadcrumb-current {
    color: var(--charcoal);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Header */
.vd-header {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border);
}

.vd-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-6);
}

.vd-header-inner > div:first-child {
    min-width: 0;
    flex: 1;
}

.vd-badges {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.vd-featured-tag {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--white);
    background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-gold-dark));
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* Trust Badges row */
.vd-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.vd-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 99px;
    letter-spacing: 0.02em;
}

.vd-trust-badge--blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.vd-trust-badge--gold {
    background: #fef9c3;
    color: #a16207;
}

.vd-trust-badge--green {
    background: #dcfce7;
    color: #166534;
}

.vd-trust-badge--orange {
    background: #ffedd5;
    color: #c2410c;
}

.vd-trust-badge--purple {
    background: #f3e8ff;
    color: #7e22ce;
}

.vd-type-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--rani-pink);
    background: var(--blush);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.vd-title {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-2);
}

.vd-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.vd-meta-dot {
    color: var(--gray-300);
}

.vd-stars {
    display: inline-flex;
    gap: 2px;
}

.vd-rating-val {
    font-weight: 600;
    color: var(--charcoal);
}

.vd-price-block {
    text-align: right;
    flex-shrink: 0;
}

.vd-price-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--rani-pink);
}

.vd-price-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.vd-header-actions {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

/* Tab Nav */
.vd-tab-nav {
    /* position: sticky;
    top: calc(var(--nav-height) + var(--topbar-height)); */
    /* z-index: 20; */
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.vd-tab-nav-inner {
    display: flex;
    gap: var(--space-1);
}

.vd-tab-btn {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-muted);
    padding: var(--space-3) var(--space-4);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all var(--duration-fast) ease;
}

.vd-tab-btn:hover {
    color: var(--charcoal);
}

.vd-tab-active {
    color: var(--rani-pink) !important;
    border-bottom-color: var(--rani-pink);
}

/* Main Layout */
.vd-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-8);
    padding: var(--space-8) 0;
}

.vd-section {
    margin-bottom: var(--space-8);
}

.vd-areas-grid {
    grid-template-columns: 1fr 1fr;
}

.vd-section-title {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.vd-section-badge {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-muted);
    background: var(--gray-100);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

/* Gallery */
.vd-gallery {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.vd-gallery-main {
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    overflow: hidden;
}

.vd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.vd-gallery-main:hover img {
    transform: scale(1.03);
}

.vd-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
}

.vd-gallery-thumb {
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    overflow: hidden;
}

.vd-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.vd-gallery-thumb:hover img {
    transform: scale(1.05);
}

.vd-gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--text-lg);
}

/* About */
.vd-about-text {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.vd-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.vd-info-card {
    background: var(--warm-gray);
    border-radius: var(--radius-md);
    padding: var(--space-4);
}

.vd-info-card-label {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: var(--space-2);
}

.vd-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vd-tag {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.vd-tag-gold {
    color: var(--saffron-gold-dark);
    border-color: rgba(230, 162, 60, .2);
    background: rgba(230, 162, 60, .06);
}

/* FAQ */
.vd-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.vd-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--duration-fast) ease;
}

.vd-faq-item.open {
    border-color: rgba(194, 24, 91, .15);
}

.vd-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--charcoal);
    text-align: left;
}

.vd-faq-q svg {
    transition: transform var(--duration-fast) ease;
    color: var(--gray-400);
    flex-shrink: 0;
}

.vd-faq-item.open .vd-faq-q svg {
    transform: rotate(180deg);
    color: var(--rani-pink);
}

.vd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.vd-faq-item.open .vd-faq-a {
    max-height: 300px;
}

.vd-faq-a p {
    padding: 0 var(--space-4) var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

/* Sidebar / Contact Card */
/* Pricing Estimate Card */
.vd-price-estimate-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.vd-pe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border);
}

.vd-pe-header h3 {
    font-family: var(--font-serif);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--charcoal);
}

.vd-pe-info {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--rani-pink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vd-pe-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: var(--space-5);
    gap: var(--space-4);
}

.vd-pe-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vd-pe-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
}

.vd-pe-value {
    font-size: 13px;
    color: var(--text-muted);
}

.vd-pe-package {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-5);
    border-top: 1px solid var(--border);
}

.vd-pe-pkg-price {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--rani-pink);
}

.vd-pe-pkg-price span {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 400;
}

.vd-pe-pkg-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
}

.vd-sidebar {
    position: sticky;
    top: 70px;
    align-self: start;
}

.vd-contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.vd-contact-header {
    background: linear-gradient(135deg, var(--rani-pink), #a01650);
    padding: var(--space-5);
    color: var(--white);
}

.vd-contact-title {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 600;
    color: #fff;
}

.vd-contact-subtitle {
    font-size: var(--text-xs);
    color: white;
    opacity: .85;
    margin-top: 2px;
}

.vd-contact-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border);
}

.vd-contact-price {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--rani-pink);
}

.vd-contact-price-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.vd-contact-form {
    padding: var(--space-4) var(--space-5) var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.vd-input {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--duration-fast) ease;
    width: 100%;
}

.vd-input:focus {
    border-color: var(--rani-pink);
}

.vd-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
}

@media (max-width: 480px) {
    .vd-input-row {
        grid-template-columns: 1fr;
    }
}

.vd-send-btn {
    width: 100%;
    padding: 12px;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    background: var(--rani-pink);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--duration-fast) ease;
}

.vd-send-btn:hover {
    background: var(--rani-pink-dark);
}

.vd-whatsapp-btn {
    width: 100%;
    padding: 12px;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #25d366;
    background: rgba(37, 211, 102, .08);
    border: 1px solid rgba(37, 211, 102, .2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.vd-whatsapp-btn:hover {
    background: rgba(37, 211, 102, .15);
}

/* Similar Vendors */
.vd-similar {
    padding: var(--space-12) 0;
    background: var(--warm-gray);
}

.vd-similar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-6);
}

.vd-similar-subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 2px;
}

.vd-similar-nav {
    display: flex;
    gap: var(--space-2);
}

.vd-sim-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--text-lg);
    color: var(--gray-600);
    transition: all var(--duration-fast) ease;
}

.vd-sim-nav-btn:hover {
    border-color: var(--rani-pink);
    color: var(--rani-pink);
}

.vd-similar-carousel {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vd-similar-carousel::-webkit-scrollbar {
    display: none;
}

.vd-sim-card {
    flex: 0 0 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-xs);
    transition: all var(--duration-normal) ease;
}

.vd-sim-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm);
}

.vd-sim-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.vd-sim-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.vd-sim-card:hover .vd-sim-card-img img {
    transform: scale(1.05);
}

.vd-sim-rating {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, .6);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.vd-sim-card-info {
    padding: var(--space-3);
}

.vd-sim-card-name {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.vd-sim-card-city {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}

.vd-sim-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vd-sim-card-price {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--rani-pink);
}

.vd-sim-card-reviews {
    font-size: 10px;
    color: var(--text-muted);
}

/* Lightbox */
.vd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-lightbox-inner {
    position: relative;
    width: 90vw;
    height: 85vh;
}

.vd-lightbox-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vd-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    opacity: .7;
    transition: opacity var(--duration-fast) ease;
}

.vd-lightbox-close:hover {
    opacity: 1;
}

.vd-lightbox-prev,
.vd-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--duration-fast) ease;
}

.vd-lightbox-prev {
    left: -60px;
}

.vd-lightbox-next {
    right: -60px;
}

.vd-lightbox-prev:hover,
.vd-lightbox-next:hover {
    background: rgba(255, 255, 255, .3);
}

.vd-lightbox-counter {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .6);
    font-size: var(--text-sm);
}

.vd-empty {
    text-align: center;
    padding: var(--space-12);
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   Pricing Packages
   ═══════════════════════════════════════════════════════ */

.vd-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-5);
    margin-bottom: var(--space-4);
}

.vd-pkg-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    position: relative;
    background: #fff;
    transition: box-shadow var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.vd-pkg-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.vd-pkg-popular {
    border-color: var(--rani-pink);
    box-shadow: 0 0 0 3px rgba(214, 51, 108, 0.08);
}

.vd-pkg-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rani-pink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 14px;
    border-radius: 99px;
    white-space: nowrap;
}

.vd-pkg-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.vd-pkg-name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.vd-pkg-price {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    color: var(--rani-pink);
    font-weight: 700;
}

.vd-pkg-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.vd-pkg-inclusions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex: 1;
}

.vd-pkg-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-body);
    line-height: 1.5;
}

.vd-pkg-item svg {
    flex-shrink: 0;
    color: #059669;
    margin-top: 2px;
}

.vd-pkg-cta {
    display: block;
    text-align: center;
    padding: var(--space-3) var(--space-4);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: all var(--duration-fast) ease;
    margin-top: auto;
}

.vd-pkg-cta:hover {
    border-color: var(--rani-pink);
    color: var(--rani-pink);
}

.vd-pkg-cta-primary {
    background: var(--rani-pink);
    border-color: var(--rani-pink);
    color: #fff;
}

.vd-pkg-cta-primary:hover {
    opacity: 0.9;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════
   Reviews & Ratings
   ═══════════════════════════════════════════════════════ */

/* Rating Summary */
.vd-rating-summary {
    display: flex;
    gap: var(--space-8);
    align-items: center;
    background: var(--warm-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.vd-rating-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    min-width: 110px;
}

.vd-rating-score {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.vd-rating-stars-lg {
    display: flex;
    gap: 3px;
}

.vd-rating-total {
    font-size: var(--text-sm);
    color: var(--text-muted);
    white-space: nowrap;
}

.vd-rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    min-width: 200px;
}

.vd-rating-bar-row {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.vd-rbar-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    width: 32px;
    text-align: right;
    white-space: nowrap;
}

.vd-rbar-track {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 99px;
    overflow: hidden;
}

.vd-rbar-fill {
    height: 100%;
    background: var(--saffron-gold);
    border-radius: 99px;
    transition: width 0.4s ease;
}

.vd-rbar-count {
    font-size: var(--text-xs);
    color: var(--text-muted);
    width: 20px;
}

/* Review Cards */
.vd-review-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.vd-review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}

.vd-review-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.vd-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rani-pink);
    color: #fff;
    font-weight: 700;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vd-review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vd-review-author {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--charcoal);
}

.vd-verified-badge {
    font-size: 11px;
    color: #059669;
    background: #d1fae5;
    border-radius: 99px;
    padding: 2px 8px;
    font-weight: 600;
    width: fit-content;
}

.vd-review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.vd-review-date {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-left: var(--space-2);
}

.vd-review-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-1);
}

.vd-review-body {
    font-size: var(--text-sm);
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.vd-vendor-reply {
    margin-top: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--warm-gray);
    border-left: 3px solid var(--rani-pink);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.vd-vendor-reply-label {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--rani-pink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.vd-vendor-reply p {
    font-size: var(--text-sm);
    color: var(--text-body);
    margin: 0;
}

/* Load More */
.vd-load-more-reviews {
    display: block;
    width: 100%;
    padding: var(--space-3);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    margin-bottom: var(--space-6);
}

.vd-load-more-reviews:hover {
    border-color: var(--rani-pink);
    color: var(--rani-pink);
}

/* Write a Review */
.vd-write-review {
    background: var(--warm-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-top: var(--space-4);
}

.vd-write-review-title {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    color: var(--charcoal);
    margin-bottom: var(--space-4);
}

.vd-star-picker {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.vd-star-picker-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--charcoal);
}

.vd-star-picker-stars {
    display: flex;
    gap: 2px;
}

.vd-star-pick-btn {
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    transition: transform var(--duration-fast) ease;
    line-height: 0;
}

.vd-star-pick-btn:hover {
    transform: scale(1.2);
}

.vd-star-label {
    font-size: var(--text-sm);
    color: var(--saffron-gold);
    font-weight: 600;
    min-width: 70px;
}

.vd-review-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.vd-review-error {
    font-size: var(--text-sm);
    color: var(--error, #dc2626);
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    margin: 0;
}

.vd-review-note {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin: 0;
}

.vd-review-success {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    padding: var(--space-4);
}

.vd-review-success p {
    color: #065f46;
    font-size: var(--text-sm);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .vd-layout {
        grid-template-columns: 1fr;
        padding-left: var(--space-4);
        padding-right: var(--space-4);
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .vd-areas-grid {
        grid-template-columns: 1fr;
    }

    .vd-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .vd-gallery {
        grid-template-columns: 1fr;
    }

    .vd-info-grid {
        grid-template-columns: 1fr;
    }

    .vd-header-inner {
        flex-direction: column;
    }

    .vd-price-block {
        text-align: left;
    }

    .vd-title {
        font-size: var(--text-2xl);
    }

    /* Fix horizontal overflow on mobile */
    .vd-header-actions {
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    /* Uniform size & font for all action buttons */
    .vd-header-actions .btn,
    .vd-header-actions .vd-compare-btn {
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 0.6rem 0.9rem;
        border-radius: var(--radius-full);
        line-height: 1.2;
    }

    .vd-tab-nav {
        overflow: hidden;
    }

    /* Smaller tab text so all tabs fit in one row */
    .vd-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.72rem;
        padding: var(--space-2) var(--space-2);
    }

    .vd-tab-nav-inner {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .vd-tab-nav-inner::-webkit-scrollbar {
        display: none;
    }
}

/* ── Compare button on vendor detail header ─────────── */
.vd-compare-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--warm-gray);
    color: var(--charcoal);
    border: 1px solid var(--border);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.vd-compare-btn:hover {
    background: var(--blush);
    color: var(--rani-pink);
    border-color: var(--rani-pink);
}

.vd-compare-btn.is-added {
    background: rgba(194, 24, 91, .08);
    color: var(--rani-pink);
    border-color: var(--rani-pink);
    font-weight: 600;
}

.vd-compare-link {
    display: block;
    font-size: var(--text-xs);
    color: var(--rani-pink);
    text-decoration: underline;
    text-align: center;
    margin-top: 4px;
}

/* ── New Gallery System ─────────────────────────────── */
.vd-gl-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}

.vd-gl-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding-top: 4px;
}

.vd-gl-filter-btn {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-size: var(--text-xs);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.vd-gl-filter-btn:hover {
    border-color: var(--rani-pink);
    color: var(--rani-pink);
}

.vd-gl-filter-btn.active {
    background: var(--rani-pink);
    border-color: var(--rani-pink);
    color: var(--white);
}

.vd-gl-grid {
    columns: 3;
    column-gap: var(--space-3);
}

.vd-gl-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--warm-gray);
    break-inside: avoid;
    margin-bottom: var(--space-3);
}

.vd-gl-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
}

.vd-gl-item:hover img {
    transform: scale(1.05);
}

.vd-gl-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.vd-gl-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.vd-gl-item:hover .vd-gl-video-wrap img {
    transform: scale(1.05);
}

.vd-gl-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background var(--duration-fast) ease;
}

.vd-gl-item:hover .vd-gl-play-btn {
    background: rgba(0, 0, 0, 0.45);
}

.vd-gl-play-btn svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform var(--duration-fast) ease;
}

.vd-gl-item:hover .vd-gl-play-btn svg {
    transform: scale(1.15);
}

.vd-gl-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2) var(--space-3);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-2);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.vd-gl-item:hover .vd-gl-overlay {
    opacity: 1;
}

.vd-gl-tag-pill {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(194, 24, 91, 0.85);
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.vd-gl-caption-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

/* Lightbox footer (caption + counter) */
.vd-lightbox-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-3) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.vd-lightbox-caption {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    max-width: 60%;
    text-align: right;
}

@media (max-width: 768px) {
    .vd-gl-grid {
        columns: 2;
    }

    .vd-gl-header {
        flex-direction: column;
    }
}

/* ── Portfolio Sub-Tabs (WedMeGood style) ───────── */
.vd-portfolio-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border, #e5e7eb);
    margin-bottom: 1.5rem;
}

.vd-portfolio-tab {
    background: none;
    border: none;
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted, #9ca3af);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    font-family: var(--font-sans, sans-serif);
}

.vd-portfolio-tab:hover {
    color: var(--rani-pink, #e63980);
}

.vd-portfolio-tab.active {
    color: var(--rani-pink, #e63980);
}

.vd-portfolio-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rani-pink, #e63980);
    border-radius: 2px 2px 0 0;
}

/* ── Albums Grid ───────── */
.vd-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.vd-album-card {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border, #e5e7eb);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vd-album-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.vd-album-cover {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.vd-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vd-album-card:hover .vd-album-cover img {
    transform: scale(1.05);
}

.vd-album-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.vd-album-name {
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal, #1f2937);
}

/* ── Album Detail Back Button ───────── */
.vd-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border, #e5e7eb);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #6b7280);
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.vd-back-btn:hover {
    border-color: var(--rani-pink, #e63980);
    color: var(--rani-pink, #e63980);
}

.vd-album-detail-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal, #1f2937);
    margin-bottom: 1rem;
}

/* ── View More Button ───────── */
.vd-view-more-btn {
    display: inline-block;
    padding: 0.65rem 2rem;
    border: 2px solid var(--rani-pink, #e63980);
    border-radius: 24px;
    background: none;
    color: var(--rani-pink, #e63980);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vd-view-more-btn:hover {
    background: var(--rani-pink, #e63980);
    color: #fff;
}

/* ── Video Grid (larger items) ───────── */
.vd-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.vd-video-item {
    aspect-ratio: 16/9;
}

.vd-video-item .vd-gl-play-btn {
    opacity: 1;
}

@media (max-width: 768px) {
    .vd-portfolio-tab {
        padding: 0.65rem 1rem;
        font-size: 0.78rem;
    }

    .vd-albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .vd-video-grid {
        grid-template-columns: 1fr;
    }
}