/**
 * VGS Elementor Pro - Frontend Styles
 * Modern, polished, beautiful widget styles.
 */

:root {
    --vgs-primary: #6366f1;
    --vgs-primary-dark: #4f46e5;
    --vgs-accent: #06b6d4;
    --vgs-radius: 16px;
    --vgs-radius-sm: 12px;
    --vgs-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --vgs-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --vgs-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --vgs-shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.16);
    --vgs-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --vgs-glass: rgba(255, 255, 255, 0.85);
    --vgs-glass-border: rgba(255, 255, 255, 0.5);
}

/* Base wrapper */
.vgs-widget-wrapper {
    position: relative;
    transition: var(--vgs-transition);
}

/* Hero Slider */
.vgs-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.vgs-hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.vgs-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.vgs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 30px;
    text-align: center;
    animation: vgs-hero-fade-in 0.8s ease-out both;
}

@keyframes vgs-hero-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.vgs-hero-content.vgs-align-left { text-align: left; margin-right: auto; }
.vgs-hero-content.vgs-align-right { text-align: right; margin-left: auto; }

.vgs-hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.vgs-hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 22px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vgs-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.vgs-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--vgs-transition);
    box-shadow: var(--vgs-shadow);
    border: 2px solid transparent;
}

.vgs-hero-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-hero-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Advanced Heading */
.vgs-advanced-heading {
    line-height: 1.2;
    font-weight: 700;
}

.vgs-advanced-heading.vgs-style-gradient span.vgs-highlight {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: vgs-gradient-shift 4s ease infinite;
}

@keyframes vgs-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.vgs-advanced-heading.vgs-style-outline {
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

.vgs-typed-text {
    display: inline;
}

.typed-cursor { font-weight: 100; }

/* Gradient Button */
.vgs-gradient-button-wrapper { display: block; }

.vgs-gradient-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--vgs-transition);
    position: relative;
    overflow: hidden;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    z-index: 1;
    box-shadow: var(--vgs-shadow);
}

.vgs-gradient-button .vgs-button-icon { line-height: 1; transition: transform 0.3s ease; }

.vgs-gradient-button:hover .vgs-button-icon {
    transform: translateX(4px);
}

.vgs-gradient-button.vgs-style-outline {
    background: transparent;
    border: 2px solid;
}

.vgs-gradient-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.vgs-gradient-button:hover::before {
    opacity: 1;
}

.vgs-gradient-button.vgs-hover-pulse:hover { animation: vgs-pulse 1s infinite; }

.vgs-gradient-button.vgs-hover-shine::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transition: left 0.6s;
}

.vgs-gradient-button.vgs-hover-shine:hover::after { left: 100%; }

.vgs-gradient-button.vgs-hover-bounce:hover { animation: vgs-bounce 0.6s; }
.vgs-gradient-button.vgs-hover-wobble:hover { animation: vgs-wobble 1s; }

@keyframes vgs-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes vgs-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes vgs-wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

/* Testimonial Carousel */
.vgs-testimonial-carousel { padding: 30px 0; }

.vgs-testimonial-card {
    background: var(--vgs-glass);
    border-radius: var(--vgs-radius);
    padding: 40px 35px;
    box-shadow: var(--vgs-shadow);
    text-align: center;
    backdrop-filter: blur(12px);
    border: 1px solid var(--vgs-glass-border);
    transition: var(--vgs-transition);
    position: relative;
    overflow: hidden;
}

.vgs-testimonial-card::before {
    content: '\201D';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    line-height: 1;
    color: var(--vgs-primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    pointer-events: none;
}

.vgs-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-testimonial-image {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 3px solid #fff;
    transition: transform 0.4s ease;
}

.vgs-testimonial-card:hover .vgs-testimonial-image {
    transform: scale(1.05);
}

.vgs-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vgs-testimonial-rating { margin-bottom: 14px; }

.vgs-testimonial-rating .vgs-star-filled {
    color: #f59e0b;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.vgs-testimonial-rating .vgs-star-empty { opacity: 0.25; }

.vgs-testimonial-content {
    font-size: 1.05rem;
    margin-bottom: 22px;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
}

.vgs-testimonial-name {
    margin: 0 0 6px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.vgs-testimonial-position {
    font-size: 0.9rem;
    opacity: 0.75;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Pricing Table */
.vgs-pricing-table {
    position: relative;
    background: #fff;
    border-radius: var(--vgs-radius);
    overflow: hidden;
    box-shadow: var(--vgs-shadow);
    transition: var(--vgs-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.vgs-pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-pricing-table.vgs-featured {
    transform: scale(1.04);
    box-shadow: var(--vgs-shadow-lg);
    z-index: 2;
    border: 2px solid var(--vgs-primary);
}

.vgs-pricing-table.vgs-featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.vgs-pricing-ribbon {
    position: absolute;
    top: 22px;
    right: -42px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ff5722, #ff8a65);
    color: #fff;
    padding: 7px 48px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--vgs-shadow-sm);
    letter-spacing: 0.5px;
}

.vgs-pricing-header {
    padding: 36px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.04) 0%, transparent 100%);
}

.vgs-pricing-title { margin: 0 0 6px; font-size: 1.5rem; font-weight: 800; }

.vgs-pricing-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 18px;
    font-weight: 500;
}

.vgs-pricing-price {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vgs-pricing-period { font-size: 1rem; opacity: 0.7; font-weight: 500; }

.vgs-pricing-features {
    list-style: none;
    margin: 0;
    padding: 24px 32px;
}

.vgs-pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    transition: background 0.2s ease;
}

.vgs-pricing-features li:hover {
    background: rgba(99, 102, 241, 0.02);
}

.vgs-pricing-features li:last-child { border-bottom: none; }

.vgs-pricing-features li.vgs-excluded { opacity: 0.45; text-decoration: line-through; }

.vgs-pricing-features li.vgs-included .vgs-feature-icon {
    color: #10b981;
}

.vgs-pricing-footer { padding: 0 32px 36px; text-align: center; }

.vgs-pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--vgs-transition);
    box-shadow: var(--vgs-shadow-sm);
}

.vgs-pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--vgs-shadow);
}

/* Team Member */
.vgs-team-member {
    position: relative;
    border-radius: var(--vgs-radius);
    overflow: hidden;
    box-shadow: var(--vgs-shadow);
    transition: var(--vgs-transition);
    background: #fff;
}

.vgs-team-member:hover {
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-team-image { position: relative; overflow: hidden; }

.vgs-team-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vgs-team-member:hover .vgs-team-image img { transform: scale(1.08); }

.vgs-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.85) 0%, rgba(79, 70, 229, 0.95) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.45s ease;
    backdrop-filter: blur(4px);
}

.vgs-team-member:hover .vgs-team-overlay { opacity: 1; }

.vgs-team-bio {
    text-align: center;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.05s;
}

.vgs-team-member:hover .vgs-team-bio { transform: translateY(0); }

.vgs-team-social {
    display: flex;
    gap: 12px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.1s;
}

.vgs-team-member:hover .vgs-team-social { transform: translateY(0); }

.vgs-team-social a {
    color: #fff;
    font-size: 1.1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--vgs-transition);
}

.vgs-team-social a:hover {
    background: #fff;
    color: var(--vgs-primary);
    transform: translateY(-3px);
}

.vgs-team-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.vgs-team-name {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.vgs-team-position {
    opacity: 0.75;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Animated Counter */
.vgs-counter-wrapper {
    text-align: center;
    padding: 24px;
    border-radius: var(--vgs-radius);
    background: var(--vgs-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--vgs-glass-border);
    box-shadow: var(--vgs-shadow);
    transition: var(--vgs-transition);
}

.vgs-counter-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-counter-icon {
    margin-bottom: 14px;
    font-size: 2.4rem;
    color: var(--vgs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.08);
}

.vgs-counter-number-wrapper {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vgs-counter-prefix, .vgs-counter-suffix { font-size: 0.55em; }

.vgs-counter-title {
    display: block;
    margin-top: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #374151;
}

/* FAQ Accordion */
.vgs-faq-accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--vgs-radius);
    overflow: hidden;
    box-shadow: var(--vgs-shadow);
    background: #fff;
}

.vgs-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    transition: background 0.25s ease;
}

.vgs-faq-item:hover {
    background: rgba(99, 102, 241, 0.02);
}

.vgs-faq-item.vgs-active {
    background: rgba(99, 102, 241, 0.04);
}

.vgs-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.25s ease;
}

.vgs-faq-question:hover {
    color: var(--vgs-primary);
}

.vgs-faq-icon {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    color: var(--vgs-primary);
    flex-shrink: 0;
    margin-left: 12px;
}

.vgs-faq-item.vgs-active .vgs-faq-icon {
    transform: rotate(45deg);
    background: var(--vgs-primary);
    color: #fff;
}

.vgs-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.vgs-faq-item.vgs-active .vgs-faq-answer { max-height: 500px; }

.vgs-faq-answer-inner {
    padding: 0 28px 24px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Post Grid */
.vgs-post-grid-wrapper {}

.vgs-post-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.vgs-post-filter button {
    padding: 10px 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--vgs-transition);
    box-shadow: var(--vgs-shadow-sm);
}

.vgs-post-filter button:hover {
    border-color: var(--vgs-primary);
    color: var(--vgs-primary);
    transform: translateY(-2px);
    box-shadow: var(--vgs-shadow);
}

.vgs-post-filter button.active {
    border-color: var(--vgs-primary);
    background: var(--vgs-primary);
    color: #fff;
    box-shadow: var(--vgs-shadow);
}

.vgs-post-grid { display: grid; gap: 28px; }

.vgs-post-card {
    background: #fff;
    border-radius: var(--vgs-radius);
    overflow: hidden;
    box-shadow: var(--vgs-shadow);
    transition: var(--vgs-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.vgs-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-post-thumbnail {
    position: relative;
    overflow: hidden;
}

.vgs-post-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.vgs-post-card:hover .vgs-post-thumbnail::after {
    opacity: 1;
}

.vgs-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vgs-post-card:hover .vgs-post-thumbnail img { transform: scale(1.08); }

.vgs-post-body { padding: 26px; }

.vgs-post-meta {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vgs-post-title {
    margin: 0 0 14px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

.vgs-post-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

.vgs-post-title a:hover { color: var(--vgs-primary); }

.vgs-post-excerpt {
    margin-bottom: 18px;
    color: #4b5563;
    line-height: 1.6;
}

.vgs-post-readmore {
    text-decoration: none;
    font-weight: 700;
    color: var(--vgs-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--vgs-transition);
}

.vgs-post-readmore::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.vgs-post-readmore:hover {
    color: var(--vgs-primary-dark);
}

.vgs-post-readmore:hover::after {
    transform: translateX(5px);
}

/* Video Popup */
.vgs-video-popup-wrapper { display: inline-block; }

.vgs-video-poster {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: var(--vgs-radius);
    overflow: hidden;
    box-shadow: var(--vgs-shadow);
    transition: var(--vgs-transition);
}

.vgs-video-poster:hover {
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-video-poster img { display: block; width: 100%; transition: transform 0.5s ease; }

.vgs-video-poster:hover img { transform: scale(1.05); }

.vgs-video-play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88px; height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    transition: var(--vgs-transition);
    box-shadow: 0 0 0 12px rgba(99, 102, 241, 0.2);
}

.vgs-video-poster:hover .vgs-video-play-icon {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 0 18px rgba(99, 102, 241, 0.15);
}

.vgs-video-play-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    animation: vgs-pulse-ring 2s infinite;
}

@keyframes vgs-pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Countdown */
.vgs-countdown-wrapper {
    display: inline-flex;
    gap: 18px;
    flex-wrap: wrap;
}

.vgs-countdown-item {
    min-width: 82px;
    padding: 18px 14px;
    background: #fff;
    border-radius: var(--vgs-radius-sm);
    text-align: center;
    box-shadow: var(--vgs-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--vgs-transition);
}

.vgs-countdown-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-countdown-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vgs-countdown-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.75;
    margin-top: 4px;
}

/* Timeline */
.vgs-timeline { position: relative; }

.vgs-timeline-line {
    position: absolute;
    background: linear-gradient(180deg, var(--vgs-primary), var(--vgs-accent));
}

.vgs-timeline-vertical .vgs-timeline-line {
    top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%);
    border-radius: 3px;
}

.vgs-timeline-horizontal { display: flex; }

.vgs-timeline-horizontal .vgs-timeline-line {
    top: 50%; left: 0; right: 0; height: 3px;
    border-radius: 3px;
}

.vgs-timeline-item { position: relative; }

.vgs-timeline-vertical .vgs-timeline-item { width: 50%; padding: 24px; }

.vgs-timeline-vertical .vgs-timeline-item-left { margin-left: 0; padding-right: 50px; }

.vgs-timeline-vertical .vgs-timeline-item-right { margin-left: 50%; padding-left: 50px; }

.vgs-timeline-dot {
    position: absolute;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--vgs-primary);
    box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.15);
    z-index: 2;
}

.vgs-timeline-vertical .vgs-timeline-dot { top: 32px; }

.vgs-timeline-vertical .vgs-timeline-item-left .vgs-timeline-dot { right: -11px; }

.vgs-timeline-vertical .vgs-timeline-item-right .vgs-timeline-dot { left: -11px; }

.vgs-timeline-card {
    background: #fff;
    padding: 26px;
    border-radius: var(--vgs-radius);
    box-shadow: var(--vgs-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--vgs-transition);
}

.vgs-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-timeline-date {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--vgs-primary);
}

.vgs-timeline-title { margin: 0 0 12px; font-weight: 700; }

.vgs-timeline-image { margin-top: 16px; }

.vgs-timeline-image img { width: 100%; border-radius: var(--vgs-radius-sm); }

/* Image Hotspot */
.vgs-image-hotspot { position: relative; display: inline-block; }

.vgs-image-hotspot img { display: block; max-width: 100%; border-radius: var(--vgs-radius-sm); }

.vgs-hotspot-marker {
    position: absolute;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.2);
    transition: var(--vgs-transition);
}

.vgs-hotspot-marker:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 0 12px rgba(99, 102, 241, 0.15);
}

.vgs-hotspot-marker::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: vgs-pulse-ring 2s infinite;
    opacity: 0.6;
}

.vgs-hotspot-tooltip {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vgs-glass);
    color: #333;
    padding: 14px 18px;
    border-radius: var(--vgs-radius-sm);
    width: 220px;
    box-shadow: var(--vgs-shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: var(--vgs-transition);
    z-index: 3;
    backdrop-filter: blur(12px);
    border: 1px solid var(--vgs-glass-border);
}

.vgs-hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--vgs-glass);
}

.vgs-hotspot-marker:hover .vgs-hotspot-tooltip,
.vgs-hotspot-marker:focus .vgs-hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 58px;
}

.vgs-hotspot-title { margin: 0 0 6px; font-size: 1rem; font-weight: 700; }

.vgs-hotspot-description { margin: 0; font-size: 0.9rem; color: #4b5563; }

/* Floating Buttons */
.vgs-floating-buttons {
    position: fixed;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vgs-floating-buttons.vgs-position-bottom-right { bottom: 30px; right: 30px; }
.vgs-floating-buttons.vgs-position-bottom-left { bottom: 30px; left: 30px; }
.vgs-floating-buttons.vgs-position-top-right { top: 30px; right: 30px; }
.vgs-floating-buttons.vgs-position-top-left { top: 30px; left: 30px; }

.vgs-floating-buttons a {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transition: var(--vgs-transition);
    position: relative;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
}

.vgs-floating-buttons a:hover {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.vgs-floating-tooltip {
    position: absolute;
    right: 70px;
    background: #1f2937;
    color: #fff;
    padding: 7px 13px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.82rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--vgs-transition);
    font-weight: 500;
}

.vgs-floating-buttons a:hover .vgs-floating-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Particle Section */
.vgs-particle-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.vgs-particles { position: absolute; inset: 0; z-index: 0; }

.vgs-particle-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 30px;
}

/* Marquee */
.vgs-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    background: linear-gradient(90deg, rgba(99,102,241,0.05), rgba(6,182,212,0.05));
}

.vgs-marquee-track { display: inline-flex; }

.vgs-marquee-text { display: inline-flex; align-items: center; }

.vgs-marquee-text span {
    padding: 0 34px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vgs-marquee-wrapper.vgs-direction-left .vgs-marquee-track { animation: vgs-marquee-left var(--vgs-marquee-duration, 30s) linear infinite; }
.vgs-marquee-wrapper.vgs-direction-right .vgs-marquee-track { animation: vgs-marquee-right var(--vgs-marquee-duration, 30s) linear infinite; }

.vgs-marquee-wrapper[data-pause-hover="true"]:hover .vgs-marquee-track { animation-play-state: paused; }

@keyframes vgs-marquee-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes vgs-marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Content Toggle */
.vgs-content-toggle {}

.vgs-toggle-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;
    font-weight: 700;
}

.vgs-toggle-switch {
    width: 64px; height: 34px;
    border-radius: 34px;
    background: #d1d5db;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background 0.35s ease;
}

.vgs-toggle-switch.vgs-active { background: linear-gradient(90deg, var(--vgs-primary), var(--vgs-accent)); }

.vgs-toggle-knob {
    position: absolute;
    top: 4px; left: 4px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vgs-toggle-switch.vgs-active .vgs-toggle-knob { left: 34px; }

.vgs-toggle-content { display: none; }

.vgs-toggle-content.vgs-active { display: block; animation: vgs-fade-in 0.5s ease; }

/* Progress Bar */
.vgs-progress-bar { margin-bottom: 18px; }

.vgs-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.vgs-progress-track {
    width: 100%;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    overflow: hidden;
    height: 12px;
}

.vgs-progress-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(90deg, var(--vgs-primary), var(--vgs-accent));
    position: relative;
    overflow: hidden;
}

.vgs-progress-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: vgs-progress-shine 2s infinite;
}

@keyframes vgs-progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Image Gallery */
.vgs-gallery-wrapper {}

.vgs-gallery-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.vgs-gallery-filter button {
    padding: 10px 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--vgs-transition);
    box-shadow: var(--vgs-shadow-sm);
}

.vgs-gallery-filter button:hover {
    border-color: var(--vgs-primary);
    color: var(--vgs-primary);
    transform: translateY(-2px);
    box-shadow: var(--vgs-shadow);
}

.vgs-gallery-filter button.active {
    border-color: var(--vgs-primary);
    background: var(--vgs-primary);
    color: #fff;
}

.vgs-image-gallery { display: grid; gap: 18px; }

.vgs-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--vgs-radius-sm);
    box-shadow: var(--vgs-shadow-sm);
    transition: var(--vgs-transition);
    background: #f3f4f6;
}

.vgs-gallery-item:hover {
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-gallery-item > a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vgs-gallery-image {
    overflow: hidden;
    position: relative;
}

.vgs-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.vgs-gallery-item:hover .vgs-gallery-image img { transform: scale(1.12); }

.vgs-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.75), rgba(6, 182, 212, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    backdrop-filter: blur(4px);
    padding: 20px;
    text-align: center;
}

.vgs-gallery-item:hover .vgs-gallery-overlay { opacity: 1; }

.vgs-gallery-caption {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    transform: translateY(12px);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.vgs-gallery-item:hover .vgs-gallery-caption { transform: translateY(0); }

.vgs-gallery-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.vgs-gallery-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.vgs-gallery-item:hover .vgs-gallery-icon {
    transform: scale(1);
    opacity: 1;
}

/* Hover effects */
.vgs-gallery-wrapper[data-hover="slide"] .vgs-gallery-overlay {
    transform: translateY(100%);
    opacity: 1;
}

.vgs-gallery-wrapper[data-hover="slide"] .vgs-gallery-item:hover .vgs-gallery-overlay {
    transform: translateY(0);
}

.vgs-gallery-wrapper[data-hover="fade"] .vgs-gallery-overlay {
    background: rgba(0, 0, 0, 0.65);
}

.vgs-gallery-wrapper[data-hover="reveal"] .vgs-gallery-overlay {
    clip-path: circle(0% at 50% 50%);
    opacity: 1;
}

.vgs-gallery-wrapper[data-hover="reveal"] .vgs-gallery-item:hover .vgs-gallery-overlay {
    clip-path: circle(150% at 50% 50%);
}

/* Metro layout */
.vgs-gallery-metro .vgs-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

/* Lightbox */
.vgs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vgs-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

body.vgs-lightbox-open { overflow: hidden; }

.vgs-lightbox-stage {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vgs-lightbox-stage img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.vgs-lightbox-caption {
    color: #fff;
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    opacity: 0.9;
}

.vgs-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.vgs-lightbox-close:hover { transform: scale(1.15); }

.vgs-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.vgs-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.vgs-lightbox-prev { left: 24px; }
.vgs-lightbox-next { right: 24px; }

@media (max-width: 768px) {
    .vgs-lightbox-prev { left: 12px; }
    .vgs-lightbox-next { right: 12px; }
    .vgs-lightbox-close { top: 12px; right: 12px; }
    .vgs-gallery-metro .vgs-gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* Lottie */
.vgs-lottie-wrapper { display: inline-block; }

.vgs-lottie { display: inline-block; }

/* Notification Bar */
.vgs-notification-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 24px;
    position: relative;
    font-size: 0.95rem;
    background: linear-gradient(90deg, var(--vgs-primary), var(--vgs-accent));
    color: #fff;
}

.vgs-notification-bar.vgs-sticky-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.vgs-notification-content p { margin: 0; }

.vgs-notification-button {
    padding: 9px 22px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    background: #fff;
    color: var(--vgs-primary);
    font-weight: 700;
    transition: var(--vgs-transition);
    box-shadow: var(--vgs-shadow-sm);
}

.vgs-notification-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--vgs-shadow);
}

.vgs-notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.vgs-notification-close:hover { opacity: 1; }

/* Reading Progress */
.vgs-reading-progress {
    position: fixed;
    left: 0; right: 0;
    height: 5px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.vgs-reading-progress.vgs-position-top { top: 0; }
.vgs-reading-progress.vgs-position-bottom { bottom: 0; }

.vgs-reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--vgs-primary), var(--vgs-accent));
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

/* Back To Top */
.vgs-back-to-top {
    position: fixed;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0; visibility: hidden;
    transition: var(--vgs-transition);
    z-index: 999;
    box-shadow: var(--vgs-shadow);
    border: 2px solid #fff;
}

.vgs-back-to-top.vgs-visible { opacity: 1; visibility: visible; }

.vgs-back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-back-to-top.vgs-position-bottom-right { bottom: 30px; right: 30px; }
.vgs-back-to-top.vgs-position-bottom-left { bottom: 30px; left: 30px; }

/* Social Share */
.vgs-social-share { display: flex; flex-wrap: wrap; gap: 12px; }

.vgs-social-share a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--vgs-shadow-sm);
    transition: var(--vgs-transition);
    font-weight: 600;
    font-size: 0.95rem;
}

.vgs-social-share a:hover {
    transform: translateY(-3px);
    box-shadow: var(--vgs-shadow);
    border-color: var(--vgs-primary);
    color: var(--vgs-primary);
}

/* Video Modal */
.vgs-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    animation: vgs-fade-in 0.3s ease;
}

.vgs-video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: var(--vgs-radius);
    overflow: hidden;
    box-shadow: var(--vgs-shadow-lg);
}

.vgs-video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.vgs-video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.vgs-video-modal-close:hover { transform: scale(1.15); }

/* Image Comparison */
.vgs-image-comparison { position: relative; overflow: hidden; border-radius: var(--vgs-radius-sm); box-shadow: var(--vgs-shadow); }

.vgs-comparison-wrapper { position: relative; }

.vgs-comparison-before, .vgs-comparison-after { position: relative; }

.vgs-comparison-after {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
}

.vgs-comparison-after img, .vgs-comparison-before img { width: 100%; display: block; }

.vgs-comparison-handle {
    position: absolute;
    top: 0; bottom: 0;
    width: 4px;
    background: #fff;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.vgs-comparison-arrows {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--vgs-shadow);
    color: var(--vgs-primary);
    font-size: 1.1rem;
}

.vgs-comparison-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.vgs-label-before { left: 20px; }
.vgs-label-after { right: 20px; }

/* General Utility Animations */
@keyframes vgs-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* Focus states for accessibility */
.vgs-hero-button:focus,
.vgs-gradient-button:focus,
.vgs-pricing-button:focus,
.vgs-post-filter button:focus,
.vgs-gallery-filter button:focus,
.vgs-faq-question:focus,
.vgs-toggle-switch:focus,
.vgs-social-share a:focus,
.vgs-post-readmore:focus,
.vgs-notification-button:focus,
.vgs-notification-close:focus,
.vgs-video-modal-close:focus,
.vgs-back-to-top:focus,
.vgs-floating-buttons a:focus {
    outline: 2px solid var(--vgs-primary);
    outline-offset: 3px;
}

/* Weather Widget */
.vgs-weather-card {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: var(--vgs-radius);
    padding: 32px;
    color: #fff;
    box-shadow: var(--vgs-shadow);
    transition: var(--vgs-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vgs-weather-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
    z-index: -1;
}

.vgs-weather-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-weather-card.vgs-weather-clear-sky-night,
.vgs-weather-card.vgs-weather-few-clouds-night {
    background: linear-gradient(135deg, #4f46e5 0%, #1e1b4b 100%);
}

.vgs-weather-card.vgs-weather-clouds,
.vgs-weather-card.vgs-weather-few-clouds,
.vgs-weather-card.vgs-weather-few-clouds-night {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.vgs-weather-card.vgs-weather-rain,
.vgs-weather-card.vgs-weather-storm {
    background: linear-gradient(135deg, #475569 0%, #1e293b 100%);
}

.vgs-weather-card.vgs-weather-snow {
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    color: #1e3a8a;
}

.vgs-weather-card.vgs-weather-mist {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    color: #334155;
}

.vgs-weather-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.vgs-weather-inline .vgs-weather-main {
    margin-bottom: 0;
    justify-content: center;
}

.vgs-weather-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.vgs-weather-icon svg {
    width: 100%;
    height: 100%;
}

.vgs-weather-info {
    flex: 1;
}

.vgs-weather-temp {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.vgs-weather-condition {
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 6px;
    text-transform: capitalize;
}

.vgs-weather-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--vgs-radius-sm);
    padding: 16px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
}

.vgs-weather-detail {
    text-align: center;
}

.vgs-weather-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 4px;
}

.vgs-weather-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}

.vgs-weather-error {
    padding: 20px;
    background: #fef2f2;
    color: #b91c1c;
    border-radius: var(--vgs-radius-sm);
    border: 1px solid #fecaca;
    font-weight: 500;
}

.vgs-weather-minimal {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
}

.vgs-weather-minimal .vgs-weather-icon {
    width: 48px;
    height: 48px;
}

.vgs-weather-minimal .vgs-weather-temp {
    font-size: 2rem;
}

.vgs-weather-minimal .vgs-weather-condition {
    font-size: 0.95rem;
}

/* News Widget */
.vgs-news-widget {}

.vgs-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.vgs-news-layout-list .vgs-news-grid {
    grid-template-columns: 1fr;
}

.vgs-news-card {
    background: #fff;
    border-radius: var(--vgs-radius);
    overflow: hidden;
    box-shadow: var(--vgs-shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--vgs-transition);
    display: flex;
    flex-direction: column;
}

.vgs-news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-news-layout-list .vgs-news-card {
    flex-direction: row;
    align-items: stretch;
}

.vgs-news-image {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
}

.vgs-news-layout-list .vgs-news-image {
    width: 240px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.vgs-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vgs-news-card:hover .vgs-news-image img {
    transform: scale(1.08);
}

.vgs-news-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vgs-news-meta {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vgs-news-title {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.vgs-news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.vgs-news-title a:hover {
    color: var(--vgs-primary);
}

.vgs-news-excerpt {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.vgs-news-error {
    padding: 20px;
    background: #fef2f2;
    color: #b91c1c;
    border-radius: var(--vgs-radius-sm);
    border: 1px solid #fecaca;
    font-weight: 500;
}

.vgs-news-empty {
    padding: 20px;
    background: #f9fafb;
    color: #6b7280;
    border-radius: var(--vgs-radius-sm);
    text-align: center;
}

/* WooCommerce Widgets */
.vgs-woo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vgs-woo-product {
    background: #fff;
    border-radius: var(--vgs-radius-sm);
    overflow: hidden;
    box-shadow: var(--vgs-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--vgs-transition);
    position: relative;
}

.vgs-woo-product:hover {
    transform: translateY(-6px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-woo-image {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    aspect-ratio: 1 / 1;
}

.vgs-woo-image > a {
    display: block;
    width: 100%;
    height: 100%;
}

.vgs-woo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vgs-woo-product:hover .vgs-woo-image img {
    transform: scale(1.08);
}

.vgs-woo-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--vgs-shadow-sm);
}

.vgs-woo-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.vgs-woo-product:hover .vgs-woo-actions {
    transform: translateY(0);
}

.vgs-woo-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 50px;
    background: #fff;
    color: var(--vgs-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--vgs-transition);
    box-shadow: var(--vgs-shadow-sm);
    border: none;
    cursor: pointer;
}

.vgs-woo-add-cart:hover {
    background: var(--vgs-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--vgs-shadow);
}

.vgs-woo-body {
    padding: 18px;
    text-align: center;
}

.vgs-woo-title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.vgs-woo-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.vgs-woo-title a:hover {
    color: var(--vgs-primary);
}

.vgs-woo-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #374151;
}

.vgs-woo-price del {
    opacity: 0.5;
    font-weight: 500;
    margin-right: 6px;
    font-size: 0.9em;
}

.vgs-woo-price ins {
    text-decoration: none;
    color: var(--vgs-primary);
}

/* WooCommerce Carousel */
.vgs-woo-carousel {
    padding: 10px 0 40px;
}

.vgs-woo-carousel .swiper-slide {
    height: auto;
}

.vgs-woo-carousel .vgs-woo-product {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vgs-woo-carousel .vgs-woo-image {
    flex-shrink: 0;
}

.vgs-woo-carousel .vgs-woo-body {
    flex: 1;
}

.vgs-woo-carousel .swiper-button-prev,
.vgs-woo-carousel .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--vgs-shadow);
    color: var(--vgs-primary);
    transition: var(--vgs-transition);
}

.vgs-woo-carousel .swiper-button-prev:hover,
.vgs-woo-carousel .swiper-button-next:hover {
    background: var(--vgs-primary);
    color: #fff;
    transform: scale(1.08);
}

.vgs-woo-carousel .swiper-button-prev::after,
.vgs-woo-carousel .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.vgs-woo-carousel .swiper-pagination-bullet-active {
    background: var(--vgs-primary);
    width: 22px;
    border-radius: 6px;
}

/* WooCommerce Add to Cart */
.vgs-woo-atc {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vgs-woo-qty {
    width: 70px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.vgs-woo-atc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--vgs-transition);
    box-shadow: var(--vgs-shadow);
    border: none;
    cursor: pointer;
}

.vgs-woo-atc-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--vgs-shadow-hover);
}

/* WooCommerce Product Categories */
.vgs-woo-cats {
    display: grid;
    gap: 24px;
}

.vgs-woo-cats-1 { grid-template-columns: 1fr; }
.vgs-woo-cats-2 { grid-template-columns: repeat(2, 1fr); }
.vgs-woo-cats-3 { grid-template-columns: repeat(3, 1fr); }
.vgs-woo-cats-4 { grid-template-columns: repeat(4, 1fr); }
.vgs-woo-cats-5 { grid-template-columns: repeat(5, 1fr); }
.vgs-woo-cats-6 { grid-template-columns: repeat(6, 1fr); }

.vgs-woo-grid-1 { grid-template-columns: 1fr; }
.vgs-woo-grid-2 { grid-template-columns: repeat(2, 1fr); }
.vgs-woo-grid-3 { grid-template-columns: repeat(3, 1fr); }
.vgs-woo-grid-4 { grid-template-columns: repeat(4, 1fr); }
.vgs-woo-grid-5 { grid-template-columns: repeat(5, 1fr); }
.vgs-woo-grid-6 { grid-template-columns: repeat(6, 1fr); }

.vgs-woo-cat {
    display: block;
    background: #fff;
    border-radius: var(--vgs-radius-sm);
    overflow: hidden;
    box-shadow: var(--vgs-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: var(--vgs-transition);
}

.vgs-woo-cat:hover {
    transform: translateY(-6px);
    box-shadow: var(--vgs-shadow-hover);
}

.vgs-woo-cat-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.vgs-woo-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vgs-woo-cat:hover .vgs-woo-cat-image img {
    transform: scale(1.08);
}

.vgs-woo-cat-body {
    padding: 18px;
    text-align: center;
}

.vgs-woo-cat-name {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 700;
}

.vgs-woo-cat-count {
    font-size: 0.85rem;
    opacity: 0.75;
    font-weight: 500;
}

.vgs-woo-notice {
    padding: 20px;
    background: #fef2f2;
    color: #b91c1c;
    border-radius: var(--vgs-radius-sm);
    border: 1px solid #fecaca;
    font-weight: 500;
}

/* Mini Cart */
.vgs-woo-mini-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: var(--vgs-transition);
}

.vgs-woo-mini-cart:hover {
    color: var(--vgs-primary);
}

.vgs-woo-mini-cart-icon {
    position: relative;
    display: inline-flex;
    font-size: 1.6rem;
}

.vgs-woo-mini-cart-icon svg {
    width: 28px;
    height: 28px;
}

.vgs-woo-mini-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.vgs-woo-mini-cart-subtotal {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Single Product Widgets */
.vgs-woo-product-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.vgs-woo-single-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #374151;
}

.vgs-woo-single-price del {
    opacity: 0.5;
    font-weight: 500;
    margin-right: 10px;
    font-size: 0.85em;
}

.vgs-woo-single-price ins {
    text-decoration: none;
    color: var(--vgs-primary);
}

.vgs-woo-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vgs-woo-rating .star-rating {
    font-size: 1.1rem;
}

.vgs-woo-rating .woocommerce-review-link {
    font-size: 0.85rem;
    color: #6b7280;
    text-decoration: none;
}

.vgs-woo-rating .woocommerce-review-link:hover {
    color: var(--vgs-primary);
}

.vgs-woo-stock {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.vgs-woo-stock.in-stock {
    background: #d1fae5;
    color: #065f46;
}

.vgs-woo-stock.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
}

.vgs-woo-short-desc {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.vgs-woo-product-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--vgs-radius-sm);
    background: #f8fafc;
}

.vgs-woo-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product Tabs */
.vgs-woo-tabs {
    background: #fff;
    border-radius: var(--vgs-radius-sm);
    box-shadow: var(--vgs-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.vgs-woo-tabs .tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #f9fafb;
}

.vgs-woo-tabs .tabs li {
    margin: 0;
}

.vgs-woo-tabs .tabs li a {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    transition: var(--vgs-transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.vgs-woo-tabs .tabs li.active a {
    color: var(--vgs-primary);
    border-bottom-color: var(--vgs-primary);
    background: #fff;
}

.vgs-woo-tabs .woocommerce-Tabs-panel {
    padding: 24px;
}

/* Product Meta */
.vgs-woo-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vgs-woo-meta-row {
    display: flex;
    gap: 8px;
    font-size: 0.95rem;
}

.vgs-woo-meta-label {
    font-weight: 700;
    color: #374151;
}

.vgs-woo-meta-value {
    color: #4b5563;
}

.vgs-woo-meta-value a {
    color: var(--vgs-primary);
    text-decoration: none;
}

.vgs-woo-meta-value a:hover {
    text-decoration: underline;
}

/* Cart / Checkout Buttons */
.vgs-woo-cart-button,
.vgs-woo-checkout-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: var(--vgs-transition);
    box-shadow: var(--vgs-shadow);
}

.vgs-woo-cart-button:hover,
.vgs-woo-checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--vgs-shadow-hover);
    color: #fff;
}

.vgs-woo-cart-button svg,
.vgs-woo-checkout-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Account Menu */
.vgs-woo-account-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vgs-woo-account-menu li a {
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    transition: var(--vgs-transition);
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.vgs-woo-account-menu li a:hover {
    background: var(--vgs-primary);
    color: #fff;
    transform: translateX(4px);
}

.vgs-woo-account-menu li.is-active a {
    background: linear-gradient(135deg, var(--vgs-primary), var(--vgs-accent));
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .vgs-hero-slide { min-height: 380px; }
    .vgs-hero-content { padding: 22px; }
    .vgs-hero-title { font-size: 2rem; }
    .vgs-hero-button { padding: 13px 28px; }

    .vgs-timeline-vertical .vgs-timeline-item {
        width: 100%;
        margin-left: 0;
        padding-left: 55px;
        padding-right: 0;
    }

    .vgs-timeline-vertical .vgs-timeline-line { left: 22px; }

    .vgs-timeline-vertical .vgs-timeline-item-left .vgs-timeline-dot,
    .vgs-timeline-vertical .vgs-timeline-item-right .vgs-timeline-dot { left: 12px; right: auto; }

    .vgs-pricing-table.vgs-featured { transform: scale(1); }
    .vgs-pricing-table.vgs-featured:hover { transform: translateY(-10px); }

    .vgs-floating-buttons.vgs-position-bottom-right { bottom: 18px; right: 18px; }
    .vgs-floating-buttons.vgs-position-bottom-left { bottom: 18px; left: 18px; }
    .vgs-back-to-top.vgs-position-bottom-right { bottom: 18px; right: 18px; }
    .vgs-back-to-top.vgs-position-bottom-left { bottom: 18px; left: 18px; }

    .vgs-notification-bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }

    .vgs-countdown-wrapper { gap: 12px; }
    .vgs-countdown-item { min-width: 68px; padding: 14px 10px; }
    .vgs-countdown-number { font-size: 1.8rem; }

    .vgs-weather-details {
        grid-template-columns: 1fr;
    }

    .vgs-news-layout-list .vgs-news-card {
        flex-direction: column;
    }

    .vgs-news-layout-list .vgs-news-image {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .vgs-woo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vgs-woo-cats-4,
    .vgs-woo-cats-5,
    .vgs-woo-cats-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vgs-testimonial-card { padding: 28px 22px; }
    .vgs-pricing-header { padding: 28px 22px; }
    .vgs-pricing-features { padding: 18px 22px; }
    .vgs-pricing-footer { padding: 0 22px 28px; }
    .vgs-post-body { padding: 20px; }
    .vgs-team-social { gap: 10px; }

    .vgs-weather-card {
        padding: 24px;
    }

    .vgs-weather-main {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .vgs-weather-temp {
        font-size: 2.4rem;
    }

    .vgs-woo-grid,
    .vgs-woo-cats-2,
    .vgs-woo-cats-3,
    .vgs-woo-cats-4,
    .vgs-woo-cats-5,
    .vgs-woo-cats-6 {
        grid-template-columns: 1fr;
    }

    .vgs-woo-atc {
        flex-direction: column;
        align-items: stretch;
    }

    .vgs-woo-qty {
        width: 100%;
    }
}
