/* ==========================================================================
   Soil Product Details V2 – Elementor Widget Styles
   Layout: text left · image right · specs table · accessories description
   ========================================================================== */

.soil-pd2-widget {
    position: relative;
    background-color: #050808;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
    padding: 80px 0;
    --soil-pd2-accent: #00E5A3;
}

/* Dark overlay so text stays readable over any background image */
.soil-pd2-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(3, 8, 10, 0.96) 0%,
            rgba(3, 8, 10, 0.88) 55%,
            rgba(3, 8, 10, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

/* --------------------------------------------------------------------------
   Main two-column wrapper
   -------------------------------------------------------------------------- */

.soil-pd2-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --------------------------------------------------------------------------
   LEFT column – all text content
   -------------------------------------------------------------------------- */

.soil-pd2-left {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ── Title ──────────────────────────────────────────────────────────────── */

.soil-pd2-name {
    font-family: 'Aldrich', 'sans-serif';
    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-pd2-name-prefix {
    color: #ffffff;
}

.soil-pd2-name-accent {
    color: var(--soil-pd2-accent);
    text-shadow: 0 0 22px rgba(0, 229, 163, 0.45);
}

/* ── Tagline ─────────────────────────────────────────────────────────────── */

.soil-pd2-tagline {
    font-size: 16px;
    text-transform: uppercase;
    color: #00E5A3;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: 'Aldrich', 'sans-serif';
}

/* ── Description ─────────────────────────────────────────────────────────── */

.soil-pd2-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 32px 0;
    letter-spacing: 0.10em;
    font-weight: 400;
    font-family: 'Aldrich', 'sans-serif';
}

/* --------------------------------------------------------------------------
   Specs table
   -------------------------------------------------------------------------- */

.soil-pd2-specs {
    display: flex;
    flex-wrap: nowrap;
    border: 1.5px solid rgba(0, 229, 163, 0.2);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.soil-pd2-spec {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
    border-right: 1.5px solid rgba(0, 229, 163, 0.2);
    aspect-ratio: 1 / 1;
    transition: background 0.25s ease;
}

.soil-pd2-spec:last-child {
    border-right: none;
}

.soil-pd2-spec:hover {
    background: rgba(0, 229, 163, 0.06);
}

.soil-pd2-spec-label {
    font-family: "Aldrich", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a8b0b6;
    margin-bottom: 12px;
}

.soil-pd2-spec-icon {
    color: var(--soil-pd2-accent);
    font-size: 20px;
    height: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px rgba(0, 229, 163, 0.3));
}

.soil-pd2-spec-icon img {
    max-height: 22px;
    width: auto;
    object-fit: contain;
}

.soil-pd2-spec-value {
    font-family: "Aldrich", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2px;
    white-space: nowrap;
}

.soil-pd2-spec-subvalue {
    font-family: "Aldrich", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #a8b0b6;
}

/* --------------------------------------------------------------------------
   Accessories section
   -------------------------------------------------------------------------- */

.soil-pd2-accessories {
    display: flex;
    flex-direction: column;
    gap: 12px;

}

.soil-pd2-acc-heading {
    font-size: 16px;
    text-transform: uppercase;
    color: #00E5A3;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: 'Aldrich', 'sans-serif';
}

.soil-pd2-acc-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 32px 0;
    letter-spacing: 0.10em;
    font-weight: 400;
    font-family: 'Aldrich', 'sans-serif';
}

.soil-pd2-acc-grid {
    display: flex;
    flex-wrap: nowrap;
    border: 1.5px solid rgba(0, 229, 163, 0.22);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.soil-pd2-acc-item {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 16px 8px;
    border-right: 1.5px solid rgba(0, 229, 163, 0.22);
    gap: 10px;
    transition: background 0.25s ease;
}

.soil-pd2-acc-item:last-child {
    border-right: none;
}

.soil-pd2-acc-item:hover {
    background: rgba(0, 229, 163, 0.06);
}

.soil-pd2-acc-icon {
    color: var(--soil-pd2-accent);
    font-size: 24px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 6px rgba(0, 229, 163, 0.25));
}

.soil-pd2-acc-icon img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
}

.soil-pd2-acc-title {
    font-family: 'Aldrich', sans-serif;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   RIGHT column – product image with glow
   -------------------------------------------------------------------------- */

.soil-pd2-right {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soil-pd2-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Animated radial glow behind the wheel */
.soil-pd2-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #00E5A3 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(45px);
    pointer-events: none;
    z-index: 0;
    animation: soil-pd2-glow-pulse 4s ease-in-out infinite;
}

.soil-pd2-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 24px 55px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 30px rgba(0, 229, 163, 0.1));
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.soil-pd2-right:hover .soil-pd2-image {
    transform: scale(1.02) translateY(-5px);
    filter:
        drop-shadow(0 30px 65px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 40px rgba(0, 229, 163, 0.22));
}

/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */

@keyframes soil-pd2-glow-pulse {

    0%,
    100% {
        opacity: 0.18;
        transform: scale(0.94);
    }

    50% {
        opacity: 0.30;
        transform: scale(1.06);
    }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .soil-pd2-left {
        flex: 0 0 58%;
        max-width: 58%;
    }

    .soil-pd2-right {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .soil-pd2-inner {
        gap: 40px;
    }
}

@media (max-width: 980px) {
    .soil-pd2-widget {
        padding: 70px 0;
    }

    .soil-pd2-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
        padding: 0 24px;
    }

    .soil-pd2-left,
    .soil-pd2-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .soil-pd2-left {
        align-items: center;
    }

    .soil-pd2-right {
        max-width: 500px;
    }

    .soil-pd2-description {
        text-align: left;
        max-width: 100%;
    }

    .soil-pd2-acc-description {
        max-width: 100%;
    }

    .soil-pd2-acc-grid {
        flex-wrap: wrap;
    }

    .soil-pd2-acc-item {
        flex: 1 1 50%;
        border-bottom: 1.5px solid rgba(0, 229, 163, 0.22);
    }

    .soil-pd2-acc-item:nth-child(even) {
        border-right: none;
    }

    .soil-pd2-acc-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .soil-pd2-specs {
        flex-wrap: wrap;
    }

    .soil-pd2-spec {
        flex: 1 1 100% !important;
        border-bottom: 1.5px solid rgba(0, 229, 163, 0.2);
        aspect-ratio: auto;
    }

    .soil-pd2-spec:nth-child(even) {
        border-right: none;
    }

    .soil-pd2-spec:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* stretch last item if count is odd */
    .soil-pd2-spec:last-child:nth-child(odd) {
        flex: 1 1 100%;
        border-right: none;
    }
}

@media (max-width: 480px) {
    .soil-pd2-inner {
        padding: 0 16px;
    }


    .soil-pd2-spec {
        flex: 1 1 100%;
        border-right: none !important;
        border-bottom: 1.5px solid rgba(0, 229, 163, 0.2);
        aspect-ratio: auto;
        padding: 14px 10px;
    }

    .soil-pd2-spec:last-child {
        border-bottom: none;
    }

    .soil-pd2-acc-grid {
        flex-direction: column;
    }

    .soil-pd2-acc-item {
        flex: 1 1 100%;
        border-right: none !important;
        border-bottom: 1.5px solid rgba(0, 229, 163, 0.22);
    }

    .soil-pd2-acc-item:last-child {
        border-bottom: none;
    }
}