@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --vd-purple: #2d1e4b;
    --vd-purple-dark: #1f1435;
    --vd-gold: #c5a059;
    --vd-gold-light: #e8d4a8;
    --vd-cream: #f9f7f2;
    --vd-text: #4a4a4a;
    --vd-white: #ffffff;
}

body.vedic-site {
    font-family: 'Poppins', sans-serif;
    color: var(--vd-text);
    background: var(--vd-cream);
}

body.vedic-site h1,
body.vedic-site h2,
body.vedic-site h3,
body.vedic-site h4,
body.vedic-site .vd-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Top bar */
.vd-topbar {
    background: var(--vd-purple-dark);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    padding: 8px 0;
}
.vd-topbar a { color: #fff; text-decoration: none; }
.vd-topbar a:hover { color: var(--vd-gold); }
.vd-topbar-marquee { overflow: hidden; white-space: nowrap; }
.vd-topbar-marquee span { display: inline-block; animation: vdMarquee 22s linear infinite; }
@keyframes vdMarquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* Header */
.vd-header {
    background: var(--vd-white);
    box-shadow: 0 2px 20px rgba(45,30,75,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.vd-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}
.vd-logo img { max-height: 58px; width: auto; }
.vd-nav { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.vd-nav > li { position: relative; }
.vd-nav > li > a {
    color: var(--vd-purple);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    transition: 0.25s;
}
.vd-nav > li > a:hover,
.vd-nav > li > a.active { color: var(--vd-gold); background: rgba(197,160,89,0.1); }
.vd-header-actions { display: flex; align-items: center; gap: 16px; }
.vd-header-actions a {
    color: var(--vd-purple);
    font-size: 20px;
    text-decoration: none;
    position: relative;
}
.vd-header-actions .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--vd-gold);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.vd-search-box {
    display: flex;
    border: 1px solid #e0d8ec;
    border-radius: 50px;
    overflow: hidden;
    max-width: 200px;
}
.vd-search-box input {
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    width: 140px;
    outline: none;
}
.vd-search-box button {
    background: var(--vd-purple);
    border: none;
    color: #fff;
    padding: 8px 14px;
    cursor: pointer;
}

/* Hero */
.vd-hero {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5efe3 50%, #ebe4f5 100%);
    padding: 70px 0 60px;
    overflow: hidden;
}
.vd-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.vd-hero h1 .gold { color: var(--vd-gold); }
.vd-hero h1 .purple { color: var(--vd-purple); }
.vd-hero-lead { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 28px; max-width: 520px; }
.vd-trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
    max-width: 480px;
}
.vd-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--vd-purple);
}
.vd-trust-item i { color: var(--vd-gold); font-size: 18px; }
.vd-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.vd-btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid transparent;
}
.vd-btn-primary { background: var(--vd-purple); color: #fff; }
.vd-btn-primary:hover { background: var(--vd-purple-dark); color: #fff; }
.vd-btn-outline { border-color: var(--vd-gold); color: var(--vd-purple); background: transparent; }
.vd-btn-outline:hover { background: var(--vd-gold); color: #fff; }
.vd-btn-gold { background: var(--vd-gold); color: #fff; border: none; }
.vd-btn-gold:hover { background: #a88645; color: #fff; }
.vd-hero-img img { width: 100%; max-height: 420px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(45,30,75,0.15)); }

/* Category pills */
.vd-categories { padding: 40px 0; background: #fff; }
.vd-cat-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
}
.vd-cat-item {
    flex: 0 0 auto;
    text-align: center;
    text-decoration: none;
    width: 100px;
}
.vd-cat-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 10px;
    transition: 0.3s;
}
.vd-cat-item:hover .vd-cat-icon { transform: translateY(-4px); }
.vd-cat-item span { font-size: 12px; font-weight: 600; color: var(--vd-purple); line-height: 1.3; display: block; }

/* Section common */
.vd-section { padding: 70px 0; }
.vd-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}
.vd-section-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--vd-purple);
    margin: 0;
}
.vd-link { color: var(--vd-gold); font-weight: 600; text-decoration: none; font-size: 14px; }
.vd-link:hover { color: var(--vd-purple); }

/* Products */
.vd-products-bg { background: var(--vd-cream); }
.vd-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.vd-product-card:hover { box-shadow: 0 12px 32px rgba(45,30,75,0.12); transform: translateY(-4px); }
.vd-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f5f5f5;
}
.vd-product-body { padding: 18px; }
.vd-product-body h3 { font-size: 16px; font-weight: 600; color: var(--vd-purple); margin-bottom: 8px; font-family: 'Poppins', sans-serif; }
.vd-product-price { margin-bottom: 8px; }
.vd-product-price .sale { color: var(--vd-purple); font-weight: 700; font-size: 18px; }
.vd-product-price .old { color: #999; text-decoration: line-through; font-size: 14px; margin-left: 8px; }
.vd-stars { color: var(--vd-gold); font-size: 12px; margin-bottom: 12px; }
.vd-product-card .vd-btn { width: 100%; text-align: center; padding: 10px; font-size: 13px; }

.vd-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
    padding: 28px;
    background: #fff;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid #eee;
}
.vd-trust-bar span { font-size: 13px; font-weight: 600; color: var(--vd-purple); }
.vd-trust-bar i { color: var(--vd-gold); margin-right: 6px; }

/* Services grid */
.vd-services-bg { background: #fff; }
.vd-service-card {
    background: var(--vd-cream);
    border-radius: 12px;
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    border: 1px solid transparent;
    transition: 0.3s;
}
.vd-service-card:hover {
    border-color: var(--vd-gold-light);
    box-shadow: 0 8px 24px rgba(45,30,75,0.08);
}
.vd-service-card .icon { font-size: 36px; margin-bottom: 14px; }
.vd-service-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--vd-purple);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.vd-service-card p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 14px; }
.vd-service-card a { color: var(--vd-gold); font-weight: 600; font-size: 13px; text-decoration: none; }
.vd-service-card a:hover { color: var(--vd-purple); }

/* Enquiry */
.vd-enquiry {
    background: var(--vd-purple);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.vd-enquiry::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23ffffff10' stroke-width='0.5'%3E%3Ccircle cx='50' cy='50' r='45'/%3E%3Ccircle cx='50' cy='50' r='35'/%3E%3Ccircle cx='50' cy='50' r='25'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.4;
}
.vd-enquiry h2 { color: #fff; font-size: 32px; margin-bottom: 24px; }
.vd-enquiry .form-control,
.vd-enquiry .form-select {
    border-radius: 8px;
    border: none;
    padding: 12px 16px;
    margin-bottom: 14px;
}
.vd-enquiry-benefits { position: relative; z-index: 1; }
.vd-enquiry-benefits li {
    list-style: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}
.vd-enquiry-benefits i { font-size: 22px; color: var(--vd-gold); }

/* Consultation form (original website form, preview styling) */
.vd-consultation-box {
    background: #fff;
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    max-width: 480px;
}
.vd-consultation-box h3 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--vd-purple);
    margin-bottom: 24px;
}
.vd-consultation-box input,
.vd-consultation-box select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #e0d8ec;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #333;
    transition: 0.3s;
}
.vd-consultation-box input:focus,
.vd-consultation-box select:focus {
    border-color: var(--vd-gold);
    box-shadow: 0 0 0 3px rgba(197,160,89,0.2);
    outline: none;
}
.vd-consultation-box button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: var(--vd-gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.vd-consultation-box button[type="submit"]:hover {
    background: #a88645;
}
.vd-consultation-side h3 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.25;
}
.vd-consultation-side p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.vd-consultation-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vd-consultation-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.vd-consultation-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--vd-gold);
    font-weight: bold;
}

/* Bottom cards */
.vd-bottom-cards { background: var(--vd-cream); padding: 60px 0; }
.vd-card-box {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.vd-card-box h3 { font-size: 22px; color: var(--vd-purple); margin-bottom: 16px; }
.vd-newsletter-form { display: flex; gap: 8px; }
.vd-newsletter-form input { flex: 1; border: 1px solid #ddd; border-radius: 8px; padding: 12px; }
.vd-testimonial { font-style: italic; color: #555; line-height: 1.8; }
.vd-testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.vd-testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.vd-badge-big { text-align: center; padding: 20px 0; }
.vd-badge-big strong { display: block; font-size: 42px; color: var(--vd-gold); font-family: 'Cormorant Garamond', serif; }
.vd-badge-big span { font-size: 14px; color: var(--vd-purple); font-weight: 600; }

/* Footer */
.vd-footer {
    background: var(--vd-purple-dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}
.vd-footer h4 { color: var(--vd-gold); font-size: 16px; font-weight: 600; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.vd-footer ul { list-style: none; padding: 0; margin: 0; }
.vd-footer ul li { margin-bottom: 10px; }
.vd-footer a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; }
.vd-footer a:hover { color: var(--vd-gold); }
.vd-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 20px 0;
    font-size: 13px;
    text-align: center;
}
.vd-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
}
.vd-social a:hover { background: var(--vd-gold); border-color: var(--vd-gold); }

.vd-mobile-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--vd-purple); }
@media (max-width: 991px) {
    .vd-nav-wrap { display: none; }
    .vd-nav-wrap.open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .vd-nav-wrap.open .vd-nav { flex-direction: column; }
    .vd-mobile-toggle { display: block; }
    .vd-search-box { display: none; }
    .vd-hero { padding: 40px 0; }
    .vd-trust-row { grid-template-columns: 1fr; }
}
