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

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

/* Dark gradient overlay – fades left-to-right so the image side glows through */
.soil-pd3-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(3, 8, 10, 0.30) 0%,
            rgba(3, 8, 10, 0.70) 45%,
            rgba(3, 8, 10, 0.96) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

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

.soil-pd3-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 – product image
   -------------------------------------------------------------------------- */

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

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

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

.soil-pd3-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 35px rgba(0, 229, 163, 0.15));
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.soil-pd3-left:hover .soil-pd3-image {
    transform: scale(1.02) translateY(-4px);
    filter:
        drop-shadow(0 30px 65px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 45px rgba(0, 229, 163, 0.25));
}

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

.soil-pd3-right {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.soil-pd3-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-pd3-name-prefix {
    color: #ffffff;
}

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

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

.soil-pd3-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-pd3-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-pd3-specs {
    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.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.soil-pd3-spec {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 8px;
    border-right: 1.5px solid rgba(0, 229, 163, 0.22);
    aspect-ratio: 1 / 1;
    transition: background 0.25s ease;
}

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

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

.soil-pd3-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-pd3-spec-icon {
    color: var(--soil-pd3-accent);
    font-size: 20px;
    height: 22px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px rgba(0, 229, 163, 0.30));
}

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

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

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

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

.soil-pd3-accessories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.soil-pd3-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-pd3-acc-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    letter-spacing: 0.10em;
    font-weight: 400;
    font-family: 'Aldrich', 'sans-serif';
    margin-bottom: 0;
}

.soil-pd3-acc-desc--2 {
    padding-top: 8px;
    border-top: 1px solid rgba(0, 229, 163, 0.15);
}

.soil-pd3-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-pd3-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-pd3-acc-item:last-child {
    border-right: none;
}

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

.soil-pd3-acc-icon {
    color: var(--soil-pd3-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-pd3-acc-icon img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
}

.soil-pd3-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;
}

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

@keyframes soil-pd3-glow-pulse {

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

    50% {
        opacity: 0.32;
        transform: scale(1.07);
    }
}

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

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

    .soil-pd3-right {
        flex: 0 0 56%;
        max-width: 56%;
    }

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

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

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

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

    .soil-pd3-left {
        max-width: 480px;
        margin: 0 auto;
    }

    .soil-pd3-right {
        align-items: center;
    }

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

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

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

    .soil-pd3-acc-item:nth-child(3n) {
        border-right: none;
    }

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

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

    .soil-pd3-spec {
        flex: 1 1 50%;
        border-bottom: 1.5px solid rgba(0, 229, 163, 0.22);
        aspect-ratio: auto;
    }

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

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

    .soil-pd3-spec:last-child:nth-child(odd) {
        flex: 1 1 100%;
        border-right: none;
    }

    .soil-pd3-acc-item {
        flex: 1 1 50%;
    }

    .soil-pd3-acc-item:nth-child(3n) {
        border-right: unset;
    }

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

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

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

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

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

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

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

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