/* ============================================================
   VIBETRIBE ELEMENTOR DESIGN SYSTEM
   ============================================================
   
   HOW TO USE:
   ──────────────────────────────────────────────────────────────
   1. Go to WordPress Admin → Appearance → Customize → Additional CSS
      (or Elementor → Site Settings → Custom CSS if using Elementor Pro)
   2. Paste this entire file
   3. In Elementor, leave all typography settings on DEFAULT
      — this stylesheet handles everything automatically
   4. Only override manually when a specific element needs
      to deviate from the system (rare)
   
   WHAT THIS DOES:
   ──────────────────────────────────────────────────────────────
   - Strips Elementor's default widget margins/padding
   - Applies the exact typography from vibetribee.com source code
   - Sets consistent spacing, colors, and component styles
   - Handles responsive breakpoints automatically
   
   SOURCE: Extracted from vibetribee.com custom PHP shortcode 
   components (landing-hero.php, landing-how-it-works.php, 
   class-vt-design-system.php)
   
   ============================================================ */


/* ============================================================
   0. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================
   Single source of truth. Change a value here = changes everywhere.
   ============================================================ */

:root {
    /* ── Brand Colors ── */
    --vt-yellow: #F5D93F;
    --vt-yellow-soft: #FFDE59;
    --vt-navy: #011E62;
    --vt-navy-hover: #0a2d7a;
    --vt-cream: #FAFBED;
    --vt-warm-bg-start: #FFFDF5;
    --vt-warm-bg-end: #FFF9E6;

    /* ── Text Colors ── */
    --vt-text-dark: #1a1a1a;
    --vt-text-body: #333;
    --vt-text-muted: #555;
    --vt-text-light: #6a6a6a;

    /* ── Typography: Families ── */
    --vt-font-heading: 'Mont', 'Mont Heavy', 'Montserrat', sans-serif;
    --vt-font-body: 'Causten', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ── Typography: Hero H1 ── */
    --vt-h1-size: clamp(2.5rem, 5vw, 3.25rem);
    /* 40px → 52px fluid */
    --vt-h1-weight: 900;
    --vt-h1-line-height: 1.15;
    --vt-h1-spacing: -0.02em;
    --vt-h1-color: var(--vt-navy);

    /* ── Typography: Section H2 ── */
    --vt-h2-size: clamp(1.75rem, 3vw, 2.03rem);
    /* 28px → 36px fluid */
    --vt-h2-weight: 800;
    --vt-h2-line-height: 1.2;
    --vt-h2-color: var(--vt-navy);

    /* ── Typography: Subsection H3 ── */
    --vt-h3-size: 1.75rem;
    /* 28px */
    --vt-h3-weight: 800;
    --vt-h3-line-height: 1.25;
    --vt-h3-color: var(--vt-navy);

    /* ── Typography: Card/Item H4 ── */
    --vt-h4-size: 1rem;
    /* 16px */
    --vt-h4-weight: 700;
    --vt-h4-line-height: 1.3;
    --vt-h4-color: var(--vt-navy);

    /* ── Typography: Subheadline ── */
    --vt-sub-size: clamp(1.25rem, 2.5vw, 1.5rem);
    /* 20px → 24px fluid */
    --vt-sub-weight: 700;
    --vt-sub-line-height: 1.5;

    /* ── Typography: Body Large (descriptions) ── */
    --vt-body-lg-size: 1.2rem;
    /* 19.2px */
    --vt-body-lg-lh: 1.8;
    --vt-body-lg-color: var(--vt-text-dark);

    /* ── Typography: Body Standard ── */
    --vt-body-size: 1rem;
    /* 16px */
    --vt-body-lh: 1.65;
    --vt-body-color: var(--vt-text-body);

    /* ── Typography: Body Small (card descriptions) ── */
    --vt-body-sm-size: 0.95rem;
    /* 15.2px */
    --vt-body-sm-lh: 1.6;
    --vt-body-sm-color: var(--vt-text-muted);

    /* ── Typography: Small/Muted ── */
    --vt-small-size: 0.875rem;
    /* 14px */
    --vt-small-color: var(--vt-text-light);

    /* ── Layout ── */
    --vt-container-max: 1250px;
    --vt-container-wide: 1300px;
    --vt-content-max: 560px;
    /* Max-width for text blocks */

    /* ── Spacing ── */
    --vt-section-py: 4rem;
    /* 64px section vertical padding */
    --vt-section-px: 2rem;
    /* 32px section horizontal padding */
    --vt-heading-mb: 2.5rem;
    /* 40px after main headings */
    --vt-paragraph-mb: 1.5rem;
    /* 24px between paragraphs */
    --vt-card-gap: 1.25rem;
    /* 20px between cards */
    --vt-grid-gap: 3rem;
    /* 48px grid column gap */

    /* ── Components ── */
    --vt-card-radius: 16px;
    --vt-card-padding: 1.5rem;
    /* 24px */
    --vt-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --vt-card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --vt-btn-radius: 9999px;
    /* Full pill */
    --vt-img-radius: 24px;
    --vt-icon-radius: 50%;
}


/* ============================================================
   1. GLOBAL RESETS — Kill Elementor defaults
   ============================================================ */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Strip default widget bottom margins */
.elementor-widget {
    margin-bottom: 0 !important;
}

/* Strip default heading margins */
.elementor-heading-title {
    margin: 0 !important;
    padding: 0 !important;
}

/* Strip default paragraph margins inside text editor */
.elementor-widget-text-editor p:last-child {
    margin-bottom: 0 !important;
}

/* Force box-sizing */
.elementor-element,
.elementor-element *,
.elementor-element *::before,
.elementor-element *::after {
    box-sizing: border-box;
}


/* ============================================================
   2. TYPOGRAPHY — Heading Widgets
   ============================================================
   Targets Elementor's heading widget by HTML tag.
   Leave heading Size dropdown on "Default" in Elementor.
   ============================================================ */

/* ── H1: Hero Headlines ── */
.elementor-widget-heading h1.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title.elementor-size-default[class*="h1"],
h1.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-h1-size) !important;
    font-weight: var(--vt-h1-weight) !important;
    line-height: var(--vt-h1-line-height) !important;
    letter-spacing: var(--vt-h1-spacing) !important;
    color: var(--vt-h1-color) !important;
}

/* ── H2: Section Titles ── */
.elementor-widget-heading h2.elementor-heading-title,
h2.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-h2-size) !important;
    font-weight: var(--vt-h2-weight) !important;
    line-height: var(--vt-h2-line-height) !important;
    letter-spacing: 0 !important;
    color: var(--vt-h2-color) !important;
}

/* ── H3: Subsection Titles ── */
.elementor-widget-heading h3.elementor-heading-title,
h3.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-h3-size) !important;
    font-weight: var(--vt-h3-weight) !important;
    line-height: var(--vt-h3-line-height) !important;
    color: var(--vt-h3-color) !important;
}

/* ── H4: Card/Item Titles ── */
.elementor-widget-heading h4.elementor-heading-title,
h4.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-h4-size) !important;
    font-weight: var(--vt-h4-weight) !important;
    line-height: var(--vt-h4-line-height) !important;
    color: var(--vt-h4-color) !important;
}

/* ── H5/H6: Micro headings, labels ── */
.elementor-widget-heading h5.elementor-heading-title,
h5.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-body-size) !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: var(--vt-navy) !important;
}

h6.elementor-heading-title {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-body-sm-size) !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: var(--vt-navy) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ============================================================
   3. TYPOGRAPHY — Text Editor Widget (paragraphs)
   ============================================================ */

/* Default paragraph styling */
.elementor-widget-text-editor {
    font-family: var(--vt-font-body) !important;
    font-size: var(--vt-body-size) !important;
    line-height: var(--vt-body-lh) !important;
    color: var(--vt-body-color) !important;
}

.elementor-widget-text-editor p {
    font-family: var(--vt-font-body) !important;
    line-height: inherit !important;
    color: inherit !important;
    margin-bottom: var(--vt-paragraph-mb) !important;
}


/* ============================================================
   4. UTILITY CLASSES — Apply in Elementor's CSS Classes field
   ============================================================
   Add these class names in the widget's Advanced → CSS Classes
   to apply specific text styles without touching typography.
   ============================================================ */

/* Large body text (hero descriptions, section intros) */
.vt-text-lg,
.vt-text-lg p {
    font-size: var(--vt-body-lg-size) !important;
    line-height: var(--vt-body-lg-lh) !important;
    color: var(--vt-body-lg-color) !important;
}

/* Standard body text */
.vt-text-body,
.vt-text-body p {
    font-size: var(--vt-body-size) !important;
    line-height: var(--vt-body-lh) !important;
    color: var(--vt-body-color) !important;
}

/* Small/muted text (card descriptions, captions) */
.vt-text-sm,
.vt-text-sm p {
    font-size: var(--vt-body-sm-size) !important;
    line-height: var(--vt-body-sm-lh) !important;
    color: var(--vt-body-sm-color) !important;
}

/* Extra small text (fine print, notes) */
.vt-text-xs,
.vt-text-xs p {
    font-size: var(--vt-small-size) !important;
    color: var(--vt-small-color) !important;
    line-height: 1.5 !important;
}

/* Subheadline style (under hero H1) */
.vt-subheadline,
.vt-subheadline p {
    font-family: var(--vt-font-heading) !important;
    font-size: var(--vt-sub-size) !important;
    font-weight: var(--vt-sub-weight) !important;
    line-height: var(--vt-sub-line-height) !important;
    color: var(--vt-navy) !important;
}

/* Navy text */
.vt-text-navy,
.vt-text-navy p {
    color: var(--vt-navy) !important;
}

/* Muted text */
.vt-text-muted,
.vt-text-muted p {
    color: var(--vt-text-muted) !important;
}

/* Constrain text width for readability */
.vt-text-narrow {
    max-width: var(--vt-content-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center text */
.vt-text-center {
    text-align: center !important;
}


/* ============================================================
   5. BUTTONS — Elementor Button Widget
   ============================================================ */

/* ── Primary Button (Navy — main CTA) ── */
.elementor-widget-button .elementor-button {
    font-family: var(--vt-font-heading) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    border-radius: var(--vt-btn-radius) !important;
    padding: 18px 48px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: var(--vt-navy) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(1, 30, 98, 0.25) !important;
    line-height: 1 !important;
}

.elementor-widget-button .elementor-button:hover {
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(1, 30, 98, 0.35) !important;
    background-color: var(--vt-navy-hover) !important;
    color: #fff !important;
}

/* ── Hero Button (larger variant) ── */
/* Add class "vt-btn-hero" to the button widget */
.vt-btn-hero .elementor-button {
    font-size: 1.25rem !important;
    padding: 0 3.5rem !important;
    height: 4rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 32px rgba(1, 30, 98, 0.35),
        0 2px 8px rgba(1, 30, 98, 0.2) !important;
}

/* ── Secondary Button (Yellow accent — less common) ── */
/* Add class "vt-btn-yellow" to the button widget */
.vt-btn-yellow .elementor-button {
    background-color: var(--vt-yellow) !important;
    color: var(--vt-navy) !important;
    box-shadow: 0 4px 20px rgba(245, 217, 63, 0.35) !important;
}

.vt-btn-yellow .elementor-button:hover {
    background-color: #E5C83A !important;
    color: var(--vt-navy) !important;
    box-shadow: 0 8px 24px rgba(245, 217, 63, 0.4) !important;
}

/* Remove Elementor's default button icon spacing if no icon */
.elementor-widget-button .elementor-button .elementor-button-text {
    font-family: inherit !important;
    font-weight: inherit !important;
    font-size: inherit !important;
}


/* ============================================================
   6. SECTION & CONTAINER SPACING
   ============================================================ */

/* 
   USAGE: Add these CSS classes to Elementor Sections/Containers
   in Advanced → CSS Classes
*/

/* Standard section padding */
.vt-section {
    padding-top: var(--vt-section-py) !important;
    padding-bottom: var(--vt-section-py) !important;
    padding-left: var(--vt-section-px) !important;
    padding-right: var(--vt-section-px) !important;
}

/* Section with cream background */
.vt-section-cream {
    background-color: var(--vt-cream) !important;
}

/* Section with warm gradient background */
.vt-section-warm {
    background: linear-gradient(180deg,
            var(--vt-warm-bg-start) 0%,
            var(--vt-warm-bg-end) 100%) !important;
}

/* Section with white background */
.vt-section-white {
    background-color: #fff !important;
}

/* Section with yellow hero gradient */
.vt-section-hero {
    background: linear-gradient(135deg,
            #F6D93F 0%,
            #FFDE59 50%,
            #F6D93F 100%) !important;
}

/* Container width constraint */
.vt-container {
    max-width: var(--vt-container-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.vt-container-wide {
    max-width: var(--vt-container-wide) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Content-width constraint for text-heavy areas */
.vt-content-narrow {
    max-width: var(--vt-content-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* ============================================================
   7. CARD COMPONENTS
   ============================================================
   Add "vt-card" to any Elementor container/inner-section
   to get the approved card styling.
   ============================================================ */

.vt-card {
    background: #fff !important;
    border-radius: var(--vt-card-radius) !important;
    padding: var(--vt-card-padding) !important;
    box-shadow: var(--vt-card-shadow) !important;
    border: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.vt-card:hover {
    transform: translateX(8px) !important;
    box-shadow: var(--vt-card-shadow-hover) !important;
}

/* Card variant that lifts on hover instead of sliding */
.vt-card-lift:hover {
    transform: translateY(-4px) !important;
}

/* Testimonial card */
.vt-card-testimonial {
    background: #fff !important;
    border-radius: var(--vt-card-radius) !important;
    padding: var(--vt-card-padding) !important;
    box-shadow: var(--vt-card-shadow) !important;
    border: none !important;
    position: relative;
}

.vt-card-testimonial::before {
    content: '\201C';
    font-family: var(--vt-font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--vt-yellow);
    position: absolute;
    top: 8px;
    left: 16px;
    line-height: 1;
    opacity: 0.5;
}


/* ============================================================
   8. ICON CIRCLES (step numbers, check marks)
   ============================================================ */

/* Yellow circle icon container */
.vt-icon-circle {
    width: 80px !important;
    height: 80px !important;
    background: var(--vt-yellow) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* Navy number badge */
.vt-number-badge {
    width: 30px !important;
    height: 30px !important;
    background: var(--vt-navy) !important;
    border-radius: 50% !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Small check circle (for value stacks) */
.vt-check-circle {
    width: 26px !important;
    height: 26px !important;
    background: var(--vt-yellow) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    color: var(--vt-navy) !important;
}


/* ============================================================
   9. HIGHLIGHT / CALLOUT COMPONENTS
   ============================================================ */

/* Inline text highlight (matches hero highlight spans) */
.vt-highlight {
    display: inline;
    font-weight: 700;
    color: var(--vt-navy);
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Callout box (like the bridge section in the offer page) */
.vt-callout {
    background: rgba(245, 217, 63, 0.12) !important;
    border-left: 4px solid var(--vt-yellow) !important;
    border-radius: 0 14px 14px 0 !important;
    padding: 20px 24px !important;
}

.vt-callout p {
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
}

/* Urgency banner */
.vt-urgency-banner {
    background: var(--vt-navy) !important;
    color: #fff !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: center !important;
}


/* ============================================================
   10. IMAGES
   ============================================================ */

/* Standard image with rounded corners */
.vt-img-rounded .elementor-image img,
.vt-img-rounded img {
    border-radius: var(--vt-img-radius) !important;
}

/* Image with premium shadow */
.vt-img-shadow .elementor-image img,
.vt-img-shadow img {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15) !important;
    border-radius: var(--vt-img-radius) !important;
}


/* ============================================================
   11. DIVIDER WIDGET
   ============================================================ */

.elementor-widget-divider .elementor-divider-separator {
    border-color: rgba(1, 30, 98, 0.1) !important;
}


/* ============================================================
   12. LISTS (Icon List Widget)
   ============================================================ */

.elementor-widget-icon-list .elementor-icon-list-text {
    font-family: var(--vt-font-body) !important;
    font-size: var(--vt-body-sm-size) !important;
    line-height: var(--vt-body-sm-lh) !important;
    color: var(--vt-text-muted) !important;
}

.elementor-widget-icon-list .elementor-icon-list-icon svg {
    fill: var(--vt-yellow) !important;
}


/* ============================================================
   13. RESPONSIVE OVERRIDES
   ============================================================ */

/* Tablet: ≤ 1100px */
@media (max-width: 1100px) {
    :root {
        --vt-section-py: 3.5rem;
        --vt-grid-gap: 2.5rem;
    }
}

/* Mobile landscape / small tablet: ≤ 900px */
@media (max-width: 900px) {
    :root {
        --vt-section-py: 3rem;
        --vt-section-px: 1.5rem;
        --vt-heading-mb: 2rem;
        --vt-grid-gap: 2rem;
    }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
    :root {
        --vt-section-py: 3rem;
        --vt-section-px: 1.5rem;
        --vt-card-padding: 1.25rem;
        --vt-h3-size: 1.5rem;
    }

    .vt-icon-circle {
        width: 44px !important;
        height: 44px !important;
    }
}

/* Small mobile: ≤ 600px */
@media (max-width: 600px) {
    :root {
        --vt-section-px: 1rem;
        --vt-h3-size: 1.25rem;
        --vt-body-lg-size: 1.05rem;
    }

    /* Hero headline hard override for small screens */
    .elementor-widget-heading h1.elementor-heading-title,
    h1.elementor-heading-title {
        font-size: 2rem !important;
    }

    .vt-btn-hero .elementor-button {
        font-size: 1.1rem !important;
        padding: 0 2.5rem !important;
        height: 3.5rem !important;
    }
}


/* ============================================================
   14. ACCESSIBILITY & POLISH
   ============================================================ */

/* Focus states */
.elementor-widget-button .elementor-button:focus-visible {
    outline: 3px solid var(--vt-yellow) !important;
    outline-offset: 3px !important;
}

a:focus-visible {
    outline: 2px solid var(--vt-navy);
    outline-offset: 2px;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--vt-yellow);
    color: var(--vt-navy);
}

/* ============================================================
   14b. DARK SECTION OVERRIDES
   ============================================================
   Add class "vt-dark" to any Elementor section/container
   that has a dark background (navy, purple, dark gradient).
   All child text automatically flips to light colors.
   ============================================================ */

.vt-dark h1.elementor-heading-title,
.vt-dark h2.elementor-heading-title,
.vt-dark h3.elementor-heading-title,
.vt-dark h4.elementor-heading-title,
.vt-dark h5.elementor-heading-title,
.vt-dark h6.elementor-heading-title {
    color: #fff !important;
}

.vt-dark .elementor-widget-text-editor,
.vt-dark .elementor-widget-text-editor p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.vt-dark .vt-text-lg,
.vt-dark .vt-text-lg p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.vt-dark .vt-text-sm,
.vt-dark .vt-text-sm p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.vt-dark .vt-text-muted,
.vt-dark .vt-text-muted p {
    color: rgba(255, 255, 255, 0.6) !important;
}

.vt-dark .vt-subheadline,
.vt-dark .vt-subheadline p {
    color: #fff !important;
    opacity: 0.95;
}

/* Buttons flip to yellow on dark backgrounds */
.vt-dark .elementor-widget-button .elementor-button {
    background-color: var(--vt-yellow) !important;
    color: var(--vt-navy) !important;
    box-shadow: 0 4px 20px rgba(245, 217, 63, 0.35) !important;
}

.vt-dark .elementor-widget-button .elementor-button:hover {
    background-color: #E5C83A !important;
    color: var(--vt-navy) !important;
    box-shadow: 0 8px 24px rgba(245, 217, 63, 0.4) !important;
}

/* Icon list text on dark */
.vt-dark .elementor-widget-icon-list .elementor-icon-list-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Dividers on dark */
.vt-dark .elementor-widget-divider .elementor-divider-separator {
    border-color: rgba(255, 255, 255, 0.15) !important;
}


/* ============================================================
   15. FUNNEL-SPECIFIC OVERRIDES
   ============================================================
   For the opt-in / offer funnel pages built in WPFunnels.
   Add class "vt-funnel" to the page body or main container.
   ============================================================ */

/* Funnel pages use the offer page color palette */
.vt-funnel .elementor-widget-heading h1.elementor-heading-title {
    /* Offer page hero uses slightly different sizing */
    font-size: clamp(1.875rem, 4.2vw, 2.875rem) !important;
    /* 30px → 46px */
}

/* Guarantee section styling */
.vt-guarantee {
    background: linear-gradient(135deg, #FFF9E0, #FFF5CC) !important;
    border-top: 4px solid var(--vt-yellow) !important;
    border-bottom: 4px solid var(--vt-yellow) !important;
}

/* Pricing cards */
.vt-price-card {
    border-radius: 20px !important;
    padding: 32px 24px !important;
    border: 2px solid rgba(0, 0, 0, 0.08) !important;
    background: var(--vt-cream) !important;
    text-align: center !important;
    transition: all 0.3s !important;
}

.vt-price-card-featured {
    border-color: var(--vt-yellow) !important;
    background: #fff !important;
    box-shadow: 0 8px 32px rgba(245, 217, 63, 0.15) !important;
    transform: scale(1.03) !important;
}

/* Price tag styling */
.vt-price {
    font-family: var(--vt-font-heading) !important;
    font-size: 2.75rem !important;
    font-weight: 900 !important;
    color: var(--vt-navy) !important;
    line-height: 1 !important;
}

.vt-price-period {
    font-size: 0.8125rem !important;
    color: var(--vt-text-muted) !important;
}

/* Strikethrough original price */
.vt-price-original {
    font-size: 0.875rem !important;
    color: var(--vt-text-muted) !important;
    text-decoration: line-through !important;
}

/* Savings badge */
.vt-savings-badge {
    display: inline-block !important;
    background: rgba(245, 217, 63, 0.2) !important;
    color: var(--vt-navy) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    font-family: var(--vt-font-heading) !important;
    padding: 4px 14px !important;
    border-radius: 50px !important;
}

/* Card badge (floating label) */
.vt-card-badge {
    display: inline-block !important;
    background: var(--vt-yellow) !important;
    color: var(--vt-text-dark) !important;
    font-family: var(--vt-font-heading) !important;
    font-size: 0.6875rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
}

/* ============================================================
   16. INTERNAL ELEMENT SPACING (REVISED)
   ============================================================
   Direct targeting — no :has() dependency.
   ============================================================ */

/* ── All headings get consistent bottom margin ── */
h1.elementor-heading-title {
    margin-bottom: 1rem !important;
}

h2.elementor-heading-title {
    margin-bottom: 1.25rem !important;
}

h3.elementor-heading-title {
    margin-bottom: 0.75rem !important;
}

h4.elementor-heading-title {
    margin-bottom: 0.375rem !important;
}

h5.elementor-heading-title,
h6.elementor-heading-title {
    margin-bottom: 0.375rem !important;
}

/* ── Paragraphs inside text editor ── */
.elementor-widget-text-editor p {
    margin-bottom: 1rem !important;
}

.elementor-widget-text-editor p:last-child {
    margin-bottom: 0 !important;
}

/* ── Icon list items: tighter ── */
.elementor-icon-list-items .elementor-icon-list-item {
    margin-bottom: 0.5rem !important;
}

/* ============================================================
   17. SPACING UTILITY CLASSES
   ============================================================
   Add to any widget's Advanced → CSS Classes 
   to override default spacing for specific cases.
   ============================================================ */

/* Remove bottom margin */
.vt-mb-0 {
    margin-bottom: 0 !important;
}

/* Small bottom margin */
.vt-mb-sm {
    margin-bottom: 0.5rem !important;
}

/* 8px */

/* Medium bottom margin */
.vt-mb-md {
    margin-bottom: 1.5rem !important;
}

/* 24px */

/* Large bottom margin */
.vt-mb-lg {
    margin-bottom: 2.5rem !important;
}

/* 40px */

/* Extra large bottom margin */
.vt-mb-xl {
    margin-bottom: 4rem !important;
}

/* 64px */

/* Top margin variants */
.vt-mt-0 {
    margin-top: 0 !important;
}

.vt-mt-sm {
    margin-top: 0.5rem !important;
}

.vt-mt-md {
    margin-top: 1.5rem !important;
}

.vt-mt-lg {
    margin-top: 2.5rem !important;
}

/* Padding utilities */
.vt-py-sm {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.vt-py-md {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.vt-py-lg {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* ============================================================
   18. SECTION CARD TREATMENT
   ============================================================
   Makes white sections feel grounded with subtle containment.
   Add "vt-section-card" to any white section in Elementor.
   ============================================================ */

.vt-section-card {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.02) !important;
    max-width: 1250px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}