/* =========================================
   Soil 3D Wheel – Elementor Widget Styles
   ========================================= */

/* Root defaults (overridable via Elementor controls) */
@import url('https://fonts.googleapis.com/css2?family=Aldrich&display=swap');

.soil-wheel-widget {
    --soil-accent: #00E5A3;
    --soil-accent-glow: rgba(0, 229, 163, 0.18);
    --soil-ring-1-color: rgba(0, 229, 163, 0.12);
    --soil-ring-2-color: rgba(0, 229, 163, 0.07);
    --soil-ring-3-color: rgba(0, 229, 163, 0.05);
    --soil-ring-4-color: rgba(0, 229, 163, 0.03);
    --soil-dot-color: #ffffff;
    --soil-label-color: #00E5A3;
    --soil-label-font-size: 13px;
    --soil-label-letter-spacing: 2px;
    --soil-wheel-size: 460px;
    --soil-ring-1-size: 260px;
    --soil-ring-2-size: 420px;
    --soil-ring-3-size: 570px;
    --soil-ring-4-size: 730px;
    --soil-glow-blur-color: #00E5A3;
    --soil-glow-blur-size: 200px;
    --soil-glow-blur-opacity: 0.4;
    --font-body: 'Aldrich', sans-serif;

    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
    font-family: var(--font-body);
}

.soil-widget-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.soil-widget-container {
    position: relative;
    z-index: 1;
    width: 1400px;
    margin: 0 auto;
    padding: 18% 0 14% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.soil-wheel-only-widget .soil-widget-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 5% 0;
}

.soil-widget-left {
    flex: 1;
    max-width: 520px;
}

.soil-small-heading {
    font-size: 16px;
    text-transform: uppercase;
    color: #00E5A3;
    margin: 0 0 16px 0;
    font-weight: 400;
    letter-spacing: 0.40em;
}

.soil-main-heading {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.soil-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 32px 0;
    letter-spacing: 0.10em;
    font-weight: 400;
}

.soil-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #00E5A3;
    border: 2px solid #00E5A3;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.soil-cta-button:hover {
    background-color: #00E5A3;
    color: #000000;
}

/* .soil-cta-button::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: #00E5A3;
    transition: background-color 0.3s ease;
} */

.soil-cta-button:hover::before {
    background-color: #000000;
}

.soil-widget-right {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--soil-wheel-size);
    height: var(--soil-wheel-size);
    min-width: 300px;
    min-height: 300px;
    overflow: visible;
}

/* Outer wrapper preserving 3d perspective for mouse-tilt */
.soil-wheel-scene {
    position: relative;
    width: var(--soil-wheel-size);
    height: var(--soil-wheel-size);
    perspective: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    min-height: 300px;
    overflow: visible;
}

/* ── HUD Concentric Rings ───────────────── */
.soil-hud-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 1; /* Lower z-index so model is on top */
}

.soil-hud-ring-1 {
    width: var(--soil-ring-1-size);
    height: var(--soil-ring-1-size);
    border: 1.5px solid rgba(0, 229, 163, 0.65);
    box-shadow: 0 0 14px rgba(0, 229, 163, 0.22), inset 0 0 10px rgba(0, 229, 163, 0.06);
    animation: soil-sonar-wave 5s ease-in-out infinite;
    animation-delay: 0s;
}

.soil-hud-ring-2 {
    width: var(--soil-ring-2-size);
    height: var(--soil-ring-2-size);
    border: 1.5px solid rgba(0, 229, 163, 0.42);
    box-shadow: 0 0 18px rgba(0, 229, 163, 0.12);
    animation: soil-sonar-wave 5s ease-in-out infinite;
    animation-delay: 1.25s;
}

.soil-hud-ring-3 {
    width: var(--soil-ring-3-size);
    height: var(--soil-ring-3-size);
    border: 1.5px solid rgba(0, 229, 163, 0.24);
    box-shadow: 0 0 20px rgba(0, 229, 163, 0.07);
    animation: soil-sonar-wave 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.soil-hud-ring-4 {
    width: var(--soil-ring-4-size);
    height: var(--soil-ring-4-size);
    border: 1px solid rgba(0, 229, 163, 0.12);
    box-shadow: 0 0 24px rgba(0, 229, 163, 0.04);
    animation: soil-sonar-wave 5s ease-in-out infinite;
    animation-delay: 3.75s;
}

/* ── Wheel Image ───────────────────────── */
.soil-wheel-body {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 10;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: visible !important;
    background: rgba(255, 0, 0, 0) !important; /* Fully transparent for debugging */
}

.soil-wheel-body img.soil-wheel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.75));
    border-radius: 50%;
    will-change: transform;
}

.soil-wheel-body model-viewer.soil-wheel-model {
    width: 100%;
    height: 100%;
    display: block !important;
    user-select: auto;
    pointer-events: auto;
    background: transparent !important;
    min-width: 200px;
    min-height: 200px;
    z-index: 100 !important;
    position: relative !important;
    filter: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    mix-blend-mode: normal !important;
    --poster-color: transparent;
    --progress-bar-color: #00E5A3;
}

/* Make sure all children of model-viewer are visible */
.soil-wheel-body model-viewer.soil-wheel-model * {
    filter: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    mix-blend-mode: normal !important;
}

/* ── Glow Blur Effect ─────────────────── */
.soil-glow-blur {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) translateY(3%);
    width: var(--soil-glow-blur-size);
    height: calc(var(--soil-glow-blur-size) / 1);
    background: radial-gradient(ellipse at center, var(--soil-glow-blur-color) 101%, transparent 70%);
    opacity: var(--soil-glow-blur-opacity);
    filter: blur(86px);
    z-index: 0; /* Behind everything */
}

/* ── Hotspot Overlay Layer ─────────────── */
/* Full-widget overlay so hotspots float above rings */
.soil-hotspot-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 30;
}

/* ── Hotspots ──────────────────────────── */
.soil-hotspot {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    cursor: default;
    /* position values come from inline style set per hotspot */
    transform: translate(-50%, -50%);
}

/* Stack label below dot when position = bottom */
.soil-hotspot.label-bottom {
    flex-direction: column;
    gap: 12px;
}
.soil-hotspot.label-left {
    flex-direction: row-reverse;
}

.soil-hotspot-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    background: var(--soil-dot-color);
    border-radius: 50%;
    box-shadow:
        0 0 0 3px rgba(0, 229, 163, 0.25),
        0 0 14px var(--soil-accent);
    position: relative;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ripple ring around dot */
.soil-hotspot-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 229, 163, 0.55);
    animation: soil-ripple 2.2s ease-out infinite;
}

.soil-hotspot:hover .soil-hotspot-dot {
    transform: scale(1.4);
    box-shadow:
        0 0 0 5px rgba(0, 229, 163, 0.35),
        0 0 22px var(--soil-accent);
}

.soil-hotspot-label {
    font-family: var(--font-body);
    font-size: var(--soil-label-font-size);
    letter-spacing: var(--soil-label-letter-spacing);
    color: var(--soil-label-color);
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 229, 163, 0.4);
    white-space: nowrap;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    letter-spacing: 0.20em;
}

.soil-hotspot:hover .soil-hotspot-label {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
}

/* ── Elementor Editor placeholder ─────── */
.elementor-editor-active .soil-wheel-widget.is-empty::before {
    content: '🌀 Soil 3D Wheel – Upload a wheel image in the widget settings';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
    background: rgba(0, 229, 163, 0.04);
    border: 2px dashed rgba(0, 229, 163, 0.2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    color: #00E5A3;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* ── Keyframe Animations ───────────────── */

/* Sonar / radar wave: each ring pulses outward in sequence,
   creating a ripple that sweeps from the inner ring outward. */
@keyframes soil-sonar-wave {
    0%   { transform: translate(-50%, -50%) scale(0.96); opacity: 0.28; }
    30%  { transform: translate(-50%, -50%) scale(1.015); opacity: 1;   }
    60%  { transform: translate(-50%, -50%) scale(1.00);  opacity: 0.75; }
    100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.28; }
}

/* Dot ripple outward */
@keyframes soil-ripple {
    0%   { transform: scale(0.8);  opacity: 1; }
    100% { transform: scale(2.8);  opacity: 0; }
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1240px) {
    .soil-widget-container {
        width: 100%;
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .soil-wheel-widget {
        --soil-wheel-size: 380px;
        --soil-ring-1-size: 200px;
        --soil-ring-2-size: 330px;
        --soil-ring-3-size: 460px;
        --soil-ring-4-size: 590px;
    }

    .soil-widget-container {
        flex-direction: column;
        padding: 60px 20px;
        width: 100%;
    }

    .soil-widget-left {
    max-width: 100%;
    text-align: center;
    margin-bottom: 16%;
}

    .soil-main-heading {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .soil-wheel-widget {
        --soil-wheel-size: 280px;
        --soil-ring-3-size: 350px;
        --soil-ring-4-size: 450px;
    }

    .soil-main-heading {
        font-size: 32px;
    }

    /* Hide outer rings on phones for perf */
    .soil-hud-ring-3,
    .soil-hud-ring-4 {
        display: none;
    }
}

/* =========================================
   Soil Wheel Only – Elementor Widget Styles
   ========================================= */

.soil-wheel-only-widget {
    --soil-accent: #00E5A3;
    --soil-accent-glow: rgba(0, 229, 163, 0.18);
    --soil-wheel-size: 500px;
    --font-body: 'Aldrich', sans-serif;
    --glow-blur-color: #00E5A3;
    --glow-blur-size: 300px;
    --glow-blur-opacity: 0.4;

    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #050808;
    font-family: var(--font-body);
    padding: 60px 20px;
}

.soil-wheel-only-widget .soil-widget-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.soil-wheel-only-widget .soil-widget-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.soil-wheel-only-widget .soil-widget-left {
    flex: 0 0 30%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.soil-wheel-only-widget .soil-heading-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.soil-wheel-only-widget .soil-text-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.soil-wheel-only-widget .soil-small-heading {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--soil-accent);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.soil-wheel-only-widget .soil-main-heading {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.soil-wheel-only-widget .soil-main-heading-right {
    text-align: right;
    font-size: 80px;
}

.soil-wheel-only-widget .soil-paragraph {
    font-size: 16px;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
    letter-spacing: 0.05em;
	font-weight:400;
}

.soil-wheel-only-widget .soil-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--soil-accent);
    border: 2px solid var(--soil-accent);
    border-radius: 4px;
    transition: all 0.3s ease;
    width: fit-content;
}

.soil-wheel-only-widget .soil-cta-button::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--soil-accent);
    transition: border-color 0.3s ease;
}

.soil-wheel-only-widget .soil-cta-button:hover {
    background-color: var(--soil-accent);
    color: #000000;
}

.soil-wheel-only-widget .soil-cta-button:hover::before {
    border-left-color: #000;
}

.soil-wheel-only-widget .soil-widget-center {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.soil-wheel-only-widget .soil-widget-right {
    flex: 0 0 30%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Outer wrapper preserving 3d perspective for mouse-tilt */
.soil-wheel-only-scene {
    position: relative;
    width: var(--soil-wheel-size);
    height: var(--soil-wheel-size);
    perspective: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ── Glow Blur Effect ─────────────────── */
.soil-wheel-only-widget .soil-glow-blur {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--glow-blur-size);
    height: calc(var(--glow-blur-size) / 1.5);
    background: radial-gradient(ellipse at center, var(--glow-blur-color) 0%, transparent 70%);
    opacity: var(--glow-blur-opacity);
    filter: blur(20px);
    z-index: 0;
}

/* ── Wheel Image Body ───────────────────── */
.soil-wheel-only-body {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 10;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.soil-wheel-only-body img.soil-wheel-only-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    border-radius: 50%;
    will-change: transform;
}

/* ── Elementor Editor placeholder ─────── */
.elementor-editor-active .soil-wheel-only-widget.is-empty::before {
    content: '🌀 Soil Wheel Only – Upload a wheel image in the widget settings';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
    background: rgba(0, 229, 163, 0.04);
    border: 2px dashed rgba(0, 229, 163, 0.2);
    border-radius: 12px;
    color: #00E5A3;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1200px) {
    .soil-wheel-only-widget .soil-widget-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .soil-wheel-only-widget .soil-widget-left,
    .soil-wheel-only-widget .soil-widget-right {
        max-width: 100%;
    }

    .soil-wheel-only-widget .soil-main-heading-right {
        text-align: center;
    }

    .soil-wheel-only-widget .soil-cta-button {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .soil-wheel-only-widget {
        --soil-wheel-size: 300px;
    }

    .soil-wheel-only-widget .soil-main-heading {
        font-size: 40px;
    }
}

/* =========================================
   Soil Motor Specs – Elementor Widget Styles
   ========================================= */

.soil-motor-specs-widget {
    --soil-wheel-size: 500px;
    --accent-color: #00E5A3;
    --glow-blur-color: #00E5A3;
    --glow-blur-size: 300px;
    --glow-blur-opacity: 0.4;
    --glow-blur-intensity: 20px;
    --glow-blur-spread: 70%;
    --font-body: 'Aldrich', sans-serif;

    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #050808;
    font-family: var(--font-body);
    padding: 100px 0 120px 20px;
}

.soil-motor-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.soil-motor-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.soil-motor-wheel {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.soil-wheel-scene-inner {
    position: relative;
    width: var(--soil-wheel-size);
    height: var(--soil-wheel-size);
    display: flex;
    justify-content: center;
    align-items: center;
}

.soil-motor-specs-widget .soil-glow-blur {
    position: absolute;
    width: var(--glow-blur-size);
    height: calc(var(--glow-blur-size) / 1.5);
    background: radial-gradient(ellipse at center, var(--glow-blur-color) 0%, transparent var(--glow-blur-spread));
    opacity: var(--glow-blur-opacity);
    filter: blur(var(--glow-blur-intensity));
    z-index: 0;
}

.soil-motor-specs-widget .soil-glow-blur[data-position="top"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.soil-motor-specs-widget .soil-glow-blur[data-position="bottom"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.soil-motor-specs-widget .soil-glow-blur[data-position="left"] {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.soil-motor-specs-widget .soil-glow-blur[data-position="right"] {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.soil-motor-specs-widget .soil-glow-blur[data-position="center"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.soil-wheel-body-inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.soil-wheel-img-inner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    border-radius: 50%;
}

.soil-motor-specs {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.soil-motor-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.soil-motor-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.soil-motor-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3em;
}

.soil-specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.soil-spec-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    overflow: hidden;
}

.soil-spec-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 229, 163, 0.08) 0%, transparent 100%);
    transform: translateX(-10%);
}

.soil-spec-label {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.soil-spec-value {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1024px) {
    .soil-motor-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .soil-motor-specs {
        max-width: 100%;
    }

    .soil-spec-item {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .soil-motor-specs-widget {
        --soil-wheel-size: 350px;
    }

    .soil-motor-title {
        font-size: 32px;
    }
}

/* =========================================
   Soil Transform Bike – Elementor Widget Styles
   ========================================= */

.soil-transform-bike-widget {
    --accent-color: #00E5A3;
    --font-body: 'Aldrich', sans-serif;
    --glassmorphism-opacity: 0.15;
    --glassmorphism-border-opacity: 0.3;
    --glassmorphism-shadow: 0.37;

    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #050808;
    font-family: var(--font-body);
    padding: 60px 20px;
}

.soil-transform-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
}

.soil-transform-bike-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at var(--top-gradient-position, top), var(--top-gradient-rgba, rgba(0, 229, 163, 0.3)) 0%, transparent 50%),
        radial-gradient(ellipse at var(--bottom-gradient-position, bottom), var(--bottom-gradient-rgba, rgba(0, 229, 163, 0.15)) 0%, transparent 50%);
}

.soil-motor-specs-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at var(--top-gradient-position, top), var(--top-gradient-rgba, rgba(0, 229, 163, 0.3)) 0%, transparent 50%),
        radial-gradient(ellipse at var(--bottom-gradient-position, bottom), var(--bottom-gradient-rgba, rgba(0, 229, 163, 0.15)) 0%, transparent 50%);
}

.soil-motor-specs-widget.no-gradient::before,
.soil-transform-bike-widget.no-gradient::before {
    display: none;
}

.soil-transform-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 40px 30px;
    background: rgba(5, 8, 8, 0.7);
    box-shadow: 0 0 40px rgba(0, 229, 163, 0.15);
}

.soil-transform-bike-widget.glassmorphism .soil-transform-container {
    background: rgba(0, 20, 15, 0.1);
    border: 1px solid rgba(0, 229, 163, 0.35);
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 229, 163, 0.2), 
                0 0 100px rgba(0, 229, 163, 0.08),
                inset 0 0 20px rgba(0, 229, 163, 0.05);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.soil-transform-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 40px 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.soil-transform-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    position: relative;
}

.soil-transform-feature {
    flex: 1;
    max-width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
}

.soil-transform-feature:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 163, 0.2), transparent);
    opacity: 0.5;
}

.soil-feature-image {
    width: auto;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

.soil-feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.soil-feature-title-1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.soil-feature-title-2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1024px) {
    .soil-transform-features {
        flex-direction: column;
        gap: 50px;
    }

    .soil-transform-feature {
        max-width: 100%;
    }

    .soil-transform-feature:not(:last-child)::after {
        display: none;
    }
	.soil-transform-feature img{
		width:400px;
		height:400px;
	}
}

@media (max-width: 768px) {
    .soil-transform-title {
        font-size: 30px;
    }

    .soil-transform-container {
        padding: 30px 20px;
    }
}

/* =========================================
   Soil Feature Cards – Elementor Widget Styles
   ========================================= */

.soil-feature-cards-widget {
    --accent-color: #00E5A3;
    --font-body: 'Aldrich', sans-serif;

    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #050808;
    font-family: var(--font-body);
    padding: 60px 20px;
}

.soil-feature-cards-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.soil-feature-cards-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
                radial-gradient(ellipse at bottom, rgba(0, 229, 163, 0.15) 0%, transparent 80%);
    z-index: 0;
}

.soil-feature-cards-widget.no-gradient::before {
    display: none;
}

.soil-feature-cards-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.soil-feature-card {
    flex: 1;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    padding: 20px 0;
}

.soil-feature-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soil-feature-image img {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    filter: drop-shadow(0 0 20px rgba(0, 229, 163, 0.6));
}

.soil-feature-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 48px;
    filter: drop-shadow(0 0 20px rgba(0, 229, 163, 0.6));
}

.soil-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.soil-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.soil-feature-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.soil-feature-divider {
    position: absolute;
    top: 0;
    right: -20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 163, 0.3), transparent);
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1024px) {
    .soil-feature-cards-container {
        flex-direction: column;
        gap: 40px;
    }

    .soil-feature-card {
        max-width: 100%;
        padding: 20px;
        text-align: center;
        flex-direction: column;
    }

    .soil-feature-image,
    .soil-feature-icon {
        width: 100px;
        height: 100px;
    }

    .soil-feature-icon {
        font-size: 56px;
    }

    .soil-feature-divider {
        position: relative;
        right: auto;
        top: 40px;
        width: 60%;
        height: 2px;
        margin: 0 auto;
        background: linear-gradient(to right, transparent, rgba(0, 229, 163, 0.3), transparent);
    }
}

@media (max-width: 768px) {
    .soil-feature-title {
        font-size: 18px;
    }

    .soil-feature-description {
        font-size: 13px;
    }
}
