﻿/* ============================================================
   OTHER SEEDS PRODUCTS
   File: Content/css/other-seeds-products.css
   ============================================================ */

.rds-other-seeds-section {
    width: 100%;
    padding: 70px 5%;
    background: radial-gradient(circle at 10% 10%, rgba(241, 196, 15, 0.10), transparent 30%), radial-gradient(circle at 90% 30%, rgba(52, 152, 219, 0.10), transparent 32%), #f7f9fb;
    box-sizing: border-box;
    overflow: hidden;
}


/* ============================================================
   HERO
   ============================================================ */

.rds-other-seeds-hero {
    max-width: 1400px;
    margin: 0 auto 70px;
    min-height: 440px;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.rds-other-seeds-hero-content {
    position: relative;
    z-index: 2;
}

.rds-other-seeds-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 50px;
    background: #ffffff;
    color: #253746;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    margin-bottom: 22px;
}

.rds-other-seeds-hero h1 {
    margin: 0 0 20px;
    color: #17212b;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -2px;
}

    .rds-other-seeds-hero h1 span {
        display: block;
        background: linear-gradient(90deg, #e67e22, #d35400, #2980b9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.rds-other-seeds-hero p {
    max-width: 650px;
    margin: 0;
    color: #64717c;
    font-size: 17px;
    line-height: 1.8;
}

.rds-other-seeds-hero-visual {
    height: 440px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(26, 45, 61, .15);
}

    .rds-other-seeds-hero-visual img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        background: #ffffff;
    }

.rds-hero-floating-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    min-width: 155px;
    padding: 15px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0,0,0,.16);
    display: flex;
    flex-direction: column;
}

    .rds-hero-floating-card strong {
        font-size: 32px;
        line-height: 1;
        color: #d35400;
    }

    .rds-hero-floating-card span {
        margin-top: 5px;
        color: #56636d;
        font-size: 12px;
        font-weight: 700;
    }


/* ============================================================
   LANGUAGE SWITCH
   ============================================================ */

.rds-language-scope {
    width: 100%;
}

.rds-language-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    gap: 3px;
    background: #edf1f4;
    border-radius: 50px;
    margin-bottom: 22px;
}

.rds-lang-btn {
    border: 0;
    outline: 0;
    cursor: pointer;
    padding: 9px 17px;
    border-radius: 50px;
    background: transparent;
    color: #66737d;
    font-size: 12px;
    font-weight: 800;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

    .rds-lang-btn:hover {
        color: #17212b;
    }

    .rds-lang-btn.active {
        color: #ffffff;
        background: #253746;
        box-shadow: 0 5px 15px rgba(37,55,70,.22);
    }

.rds-lang-panel {
    animation: rdsOtherSeedsFade .35s ease both;
}

    .rds-lang-panel[hidden] {
        display: none !important;
    }

@keyframes rdsOtherSeedsFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   SECTION HEADING
   ============================================================ */

.rds-other-seeds-heading {
    max-width: 1400px;
    margin: 0 auto 35px;
    position: relative;
    padding-left: 24px;
}

.rds-heading-accent {
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 90px;
    border-radius: 10px;
    background: linear-gradient( 180deg, #e67e22, #2980b9 );
}

.rds-heading-kicker {
    display: block;
    margin-bottom: 8px;
    color: #d35400;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.rds-other-seeds-heading h2 {
    margin: 0;
    color: #17212b;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 900;
}

    .rds-other-seeds-heading h2 span {
        color: #2980b9;
    }

.rds-other-seeds-heading p {
    margin: 10px 0 0;
    color: #71808a;
    font-size: 15px;
}

.rds-heading-switch {
    float: right;
    margin-top: 5px;
}


/* ============================================================
   PRODUCT GRID
   ============================================================ */

.rds-other-seeds-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* ============================================================
   CARD
   ============================================================ */

.rds-other-seeds-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(35, 55, 70, .08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(31, 49, 63, .09);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .rds-other-seeds-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 28px 70px rgba(31, 49, 63, .15);
    }


/* ============================================================
   CARD TOP
   ============================================================ */

.rds-card-top {
    min-height: 105px;
    padding: 22px 23px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #edf0f2;
}

.rds-variety-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    background: #253746;
}

.rds-card-pragati .rds-variety-number {
    background: linear-gradient(135deg, #8e44ad, #5e3370);
}

.rds-card-tau .rds-variety-number {
    background: linear-gradient(135deg, #2980b9, #1c5b85);
}

.rds-card-bajra .rds-variety-number {
    background: linear-gradient(135deg, #e67e22, #b84f00);
}

.rds-variety-heading {
    min-width: 0;
}

    .rds-variety-heading h3 {
        margin: 5px 0 2px;
        color: #1c2b36;
        font-size: 19px;
        line-height: 1.25;
        font-weight: 900;
    }

.rds-marathi-name {
    color: #697780;
    font-size: 13px;
    font-weight: 700;
}

.rds-crop-tag {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.rds-udid-tag {
    color: #6c3483;
    background: #f1e7f5;
}

.rds-bajra-tag {
    color: #a04000;
    background: #fcebdc;
}

.rds-season-badge {
    white-space: nowrap;
    padding: 8px 11px;
    border-radius: 10px;
    color: #334650;
    background: #f1f4f6;
    font-size: 10px;
    font-weight: 800;
}


/* ============================================================
   CARD BODY
   ============================================================ */

.rds-card-body {
    min-width: 0;
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, .85fr);
    gap: 25px;
    align-items: stretch;
}

.rds-card-info {
    min-width: 0;
}

.rds-card-switch {
    margin-bottom: 18px;
}

    .rds-card-switch .rds-lang-btn {
        padding: 8px 14px;
    }


/* ============================================================
   SPECIFICATIONS
   ============================================================ */

.rds-spec-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rds-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid #edf0f2;
    border-radius: 14px;
    background: #fafbfc;
}

.rds-spec-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
    font-size: 16px;
}

.rds-spec-item div {
    min-width: 0;
}

.rds-spec-item small {
    display: block;
    margin-bottom: 3px;
    color: #8a969d;
    font-size: 10px;
    font-weight: 700;
}

.rds-spec-item strong {
    display: block;
    color: #273944;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 850;
}

.rds-feature-box {
    margin-top: 3px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 15px;
    background: linear-gradient( 135deg, #f5f8fa, #eef4f7 );
}

    .rds-feature-box span {
        width: 23px;
        height: 23px;
        flex: 0 0 23px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        background: #27ae60;
        font-size: 12px;
        font-weight: 900;
    }

    .rds-feature-box p {
        margin: 0;
        color: #52616a;
        font-size: 11px;
        line-height: 1.6;
        font-weight: 650;
    }


/* ============================================================
   IMAGE
   ============================================================ */

.rds-card-image-wrap {
    position: relative;
    min-height: 355px;
    border-radius: 21px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient( circle at center, #ffffff 0%, #f6f8fa 65%, #edf1f3 100% );
    border: 1px solid #edf0f2;
}

    .rds-card-image-wrap img {
        width: 100%;
        height: 100%;
        min-height: 355px;
        display: block;
        object-fit: contain;
        padding: 20px;
        box-sizing: border-box;
        transition: transform .45s ease;
    }

.rds-other-seeds-card:hover
.rds-card-image-wrap img {
    transform: scale(1.035);
}

.rds-image-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 9px;
    color: #ffffff;
    background: rgba(37,55,70,.88);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.rds-image-bottom {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(27, 40, 49, .84);
    backdrop-filter: blur(7px);
}

    .rds-image-bottom span {
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .8px;
    }


/* ============================================================
   BAJRA CARD - FULL WIDTH
   ============================================================ */

.rds-card-bajra {
    grid-column: 1 / -1;
}

    .rds-card-bajra .rds-card-body {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
    }


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .rds-other-seeds-section {
        padding: 55px 3.5%;
    }

    .rds-other-seeds-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rds-other-seeds-hero-content {
        max-width: 850px;
    }

    .rds-other-seeds-hero-visual {
        height: 380px;
    }

    .rds-other-seeds-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rds-card-body,
    .rds-card-bajra .rds-card-body {
        grid-template-columns: 1fr;
    }

    .rds-card-image-wrap {
        min-height: 390px;
    }

        .rds-card-image-wrap img {
            min-height: 390px;
        }

    .rds-card-bajra {
        grid-column: auto;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 760px) {

    .rds-other-seeds-section {
        padding: 42px 15px;
    }

    .rds-other-seeds-hero {
        min-height: auto;
        margin-bottom: 50px;
    }

        .rds-other-seeds-hero h1 {
            font-size: 39px;
            letter-spacing: -1px;
        }

        .rds-other-seeds-hero p {
            font-size: 14px;
            line-height: 1.7;
        }

    .rds-other-seeds-hero-visual {
        height: 310px;
        border-radius: 22px;
    }

    .rds-other-seeds-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rds-card-bajra {
        grid-column: auto;
    }

    .rds-other-seeds-heading {
        padding-left: 18px;
    }

    .rds-heading-switch {
        float: none;
        margin-top: 15px;
    }

    .rds-card-top {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 12px;
    }

    .rds-variety-number {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .rds-variety-heading h3 {
        font-size: 17px;
    }

    .rds-season-badge {
        grid-column: 2;
        justify-self: start;
        margin-top: -3px;
    }

    .rds-card-body {
        padding: 17px;
        gap: 20px;
    }

    .rds-card-image-wrap {
        min-height: 340px;
    }

        .rds-card-image-wrap img {
            min-height: 340px;
            padding: 15px;
        }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .rds-other-seeds-section {
        padding: 32px 11px;
    }

    .rds-other-seeds-eyebrow {
        font-size: 10px;
        padding: 8px 12px;
    }

    .rds-other-seeds-hero h1 {
        font-size: 32px;
    }

    .rds-other-seeds-hero-visual {
        height: 260px;
    }

    .rds-hero-floating-card {
        right: 12px;
        bottom: 12px;
        min-width: 125px;
        padding: 11px 14px;
    }

        .rds-hero-floating-card strong {
            font-size: 25px;
        }

        .rds-hero-floating-card span {
            font-size: 10px;
        }

    .rds-other-seeds-heading h2 {
        font-size: 31px;
    }

    .rds-card-top {
        padding: 17px 15px;
    }

    .rds-card-body {
        padding: 14px;
    }

    .rds-variety-heading h3 {
        font-size: 15px;
    }

    .rds-marathi-name {
        font-size: 12px;
    }

    .rds-season-badge {
        font-size: 9px;
    }

    .rds-card-image-wrap {
        min-height: 285px;
    }

        .rds-card-image-wrap img {
            min-height: 285px;
            padding: 12px;
        }

    .rds-spec-item {
        padding: 9px;
    }

        .rds-spec-item strong {
            font-size: 12px;
        }

    .rds-lang-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}


/* ============================================================
   VERY SMALL DEVICES
   ============================================================ */

@media (max-width: 350px) {

    .rds-other-seeds-hero h1 {
        font-size: 28px;
    }

    .rds-card-top {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .rds-variety-number {
        width: 42px;
        height: 42px;
        font-size: 12px;
    }

    .rds-variety-heading h3 {
        font-size: 14px;
    }

    .rds-card-image-wrap {
        min-height: 250px;
    }

        .rds-card-image-wrap img {
            min-height: 250px;
        }

    .rds-image-bottom span {
        font-size: 8px;
    }
}
