﻿/* ============================================================
   SAMRUDDHI AGRI TECH
   TUR / PIGEON PEA PRODUCTS
   File: Content/css/tur-products.css
   ============================================================ */

#rdsTurProducts,
#rdsTurProducts * {
    box-sizing: border-box;
}

#rdsTurProducts {
    --rds-tur-dark: #18252c;
    --rds-tur-text: #25343b;
    --rds-tur-muted: #6d7a80;
    --rds-tur-white: #ffffff;
    --rds-tur-border: #e4e9eb;
    --rds-tur-bg: #f7f9f8;
    width: 100%;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at 10% 0%, rgba(227, 176, 91, .08), transparent 30%), radial-gradient(circle at 100% 20%, rgba(66, 132, 153, .07), transparent 30%), #f7f9f8;
    color: var(--rds-tur-text);
    font-family: "Segoe UI", "Noto Sans Devanagari", Arial, sans-serif;
}

.rds-tur-shell {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
    padding: 55px 0 75px;
}


/* ============================================================
   HERO
   ============================================================ */

.rds-tur-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 30px;
    background: linear-gradient( 120deg, #ffffff 0%, #f8faf9 52%, #f1f5f3 100% );
    box-shadow: 0 25px 65px rgba(24,37,44,.10);
}

.rds-tur-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 50px 55px 60px;
}

.rds-tur-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 18px;
    color: #8b5a24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rds-tur-eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c8893d;
    box-shadow: 0 0 0 6px rgba(200,137,61,.12);
}

.rds-tur-hero-content h1 {
    max-width: 700px;
    margin: 0;
    color: #17262d;
    font-size: clamp(38px, 4vw, 66px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -2.5px;
}

    .rds-tur-hero-content h1 span {
        display: block;
        margin-top: 8px;
        color: #a96827;
    }

.rds-tur-hero-content p {
    max-width: 650px;
    margin: 22px 0 0;
    color: #66757b;
    font-size: 16px;
    line-height: 1.8;
}

.rds-tur-language-switch {
    position: absolute;
    top: 28px;
    right: 30px;
    z-index: 10;
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    border: 1px solid #dce4e6;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 25px rgba(25,42,48,.08);
}

.rds-lang-btn {
    border: 0;
    outline: 0;
    cursor: pointer;
    min-width: 78px;
    padding: 9px 15px;
    border-radius: 999px;
    background: transparent;
    color: #68777d;
    font-size: 13px;
    font-weight: 700;
    transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
}

    .rds-lang-btn:hover {
        color: #18252c;
    }

    .rds-lang-btn.is-active {
        color: #ffffff;
        background: #273b43;
        box-shadow: 0 5px 14px rgba(39,59,67,.22);
    }

    .rds-lang-btn:active {
        transform: scale(.96);
    }


/* ============================================================
   LANGUAGE PANELS
   ============================================================ */

.rds-lang-panel {
    opacity: 1;
    transform: translateY(0);
    animation: rdsTurLanguageIn .28s ease both;
}

    .rds-lang-panel[hidden] {
        display: none !important;
    }

@keyframes rdsTurLanguageIn {
    from {
        opacity: 0;
        transform: translateY(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   HERO POINTS
   ============================================================ */

.rds-tur-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

    .rds-tur-hero-points span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 10px 14px;
        border: 1px solid #e1e7e7;
        border-radius: 999px;
        background: rgba(255,255,255,.82);
        color: #405057;
        font-size: 12px;
        font-weight: 700;
    }

    .rds-tur-hero-points b {
        color: #a96827;
    }


/* ============================================================
   HERO IMAGE
   ============================================================ */

.rds-tur-hero-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient( 135deg, #e9eee9, #dfe8e3 );
}

.rds-tur-hero-image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    filter: blur(5px);
    z-index: 2;
}

.rds-tur-hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: contain;
    padding: 24px;
}

.rds-tur-hero-image-label {
    position: absolute;
    left: 28px;
    bottom: 25px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 14px;
    background: rgba(24,37,44,.86);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

    .rds-tur-hero-image-label span {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .rds-tur-hero-image-label strong {
        font-size: 15px;
    }


/* ============================================================
   SECTION HEADING
   ============================================================ */

.rds-tur-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin: 75px 0 35px;
    text-align: center;
}

.rds-tur-heading-line {
    height: 1px;
    background: linear-gradient( 90deg, transparent, #d5dddf );
}

    .rds-tur-heading-line:last-child {
        background: linear-gradient( 90deg, #d5dddf, transparent );
    }

.rds-tur-small-title {
    display: block;
    margin-bottom: 8px;
    color: #a96827;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.rds-tur-heading h2 {
    margin: 0;
    color: #1d3038;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.8px;
}

.rds-tur-heading p {
    margin: 9px 0 0;
    color: #77858a;
    font-size: 14px;
}


/* ============================================================
   PRODUCT GRID
   ============================================================ */

.rds-tur-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}


/* ============================================================
   PRODUCT CARD
   ============================================================ */

.rds-tur-card {
    --rds-card-accent: #a96827;
    --rds-card-soft: #fbf3e9;
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid var(--rds-tur-border);
    border-top: 4px solid var(--rds-card-accent);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(26,41,47,.075);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .rds-tur-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 50px rgba(26,41,47,.12);
    }


/* ============================================================
   CARD COLOR TONES
   ============================================================ */

.rds-tone-01 {
    --rds-card-accent: #a96827;
    --rds-card-soft: #fbf3e9;
}

.rds-tone-02 {
    --rds-card-accent: #347b88;
    --rds-card-soft: #eaf5f6;
}

.rds-tone-03 {
    --rds-card-accent: #6d5a96;
    --rds-card-soft: #f1eef8;
}

.rds-tone-04 {
    --rds-card-accent: #3e708f;
    --rds-card-soft: #edf5fa;
}

.rds-tone-05 {
    --rds-card-accent: #9c4d49;
    --rds-card-soft: #faeeee;
}


/* ============================================================
   CARD TOP
   ============================================================ */

.rds-tur-card-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    min-height: 94px;
    padding: 18px 20px;
    border-bottom: 1px solid #edf0f1;
    background: linear-gradient( 120deg, #ffffff, var(--rds-card-soft) );
}

.rds-tur-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    background: var(--rds-card-accent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(30,50,55,.14);
}

.rds-tur-code {
    margin-bottom: 2px;
    color: var(--rds-card-accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.rds-tur-title-area {
    min-width: 0;
}

    .rds-tur-title-area h3 {
        overflow: hidden;
        margin: 0;
        color: #1c2d34;
        font-size: 21px;
        line-height: 1.15;
        font-weight: 800;
        text-overflow: ellipsis;
    }

.rds-tur-local-name {
    margin-top: 5px;
    color: #7a878c;
    font-size: 12px;
    font-weight: 600;
}

.rds-tur-season-badge {
    padding: 7px 10px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    color: var(--rds-card-accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ============================================================
   CARD BODY
   ============================================================ */

.rds-tur-card-body {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(260px, 1.02fr);
    min-height: 350px;
}


/* ============================================================
   INFORMATION
   ============================================================ */

.rds-tur-info {
    min-width: 0;
    padding: 21px 21px 23px;
}

.rds-tur-mini-switch {
    display: inline-flex;
    gap: 3px;
    margin-bottom: 17px;
    padding: 4px;
    border: 1px solid #e0e6e8;
    border-radius: 999px;
    background: #f7f9f9;
}

    .rds-tur-mini-switch .rds-lang-btn {
        min-width: 67px;
        padding: 7px 10px;
        font-size: 11px;
    }

.rds-tur-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .rds-tur-spec-list li {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        padding: 11px 0;
        border-bottom: 1px dashed #e0e5e6;
    }

        .rds-tur-spec-list li:first-child {
            padding-top: 0;
        }

        .rds-tur-spec-list li:last-child {
            border-bottom: 0;
        }

    .rds-tur-spec-list span {
        flex: 0 1 48%;
        color: #78868b;
        font-size: 11px;
        line-height: 1.45;
    }

    .rds-tur-spec-list strong {
        flex: 0 1 52%;
        color: #26383f;
        font-size: 12px;
        line-height: 1.45;
        text-align: right;
    }


/* ============================================================
   PRODUCT IMAGE
   ============================================================ */

.rds-tur-image {
    position: relative;
    min-width: 0;
    min-height: 350px;
    overflow: hidden;
    border-left: 1px solid #edf0f1;
    background: radial-gradient( circle at 50% 35%, #ffffff 0, #f5f7f5 62%, #edf1ee 100% );
}

.rds-tur-image-inner {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rds-tur-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 330px;
    display: block;
    object-fit: contain;
    transition: transform .45s ease;
}

.rds-tur-card:hover .rds-tur-image img {
    transform: scale(1.035);
}

.rds-tur-image-caption {
    position: absolute;
    left: 15px;
    bottom: 14px;
    max-width: calc(100% - 30px);
    overflow: hidden;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 9px;
    background: rgba(255,255,255,.88);
    color: #45565d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(25,40,45,.08);
}


/* ============================================================
   SWITCHING EFFECT
   ============================================================ */

.rds-language-scope.rds-is-switching .rds-tur-spec-list {
    opacity: .35;
    transform: translateY(3px);
}

.rds-tur-spec-list {
    transition: opacity .18s ease, transform .18s ease;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .rds-tur-shell {
        width: min(100% - 30px, 1000px);
    }

    .rds-tur-hero {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .85fr);
    }

    .rds-tur-hero-content {
        padding: 48px 35px;
    }

        .rds-tur-hero-content h1 {
            font-size: 44px;
        }

    .rds-tur-card-body {
        grid-template-columns: minmax(0, 1fr) minmax(230px, .95fr);
    }

    .rds-tur-image,
    .rds-tur-image-inner {
        min-height: 330px;
    }

    .rds-tur-grid {
        gap: 20px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 760px) {

    .rds-tur-shell {
        width: min(100% - 22px, 680px);
        padding: 28px 0 50px;
    }

    .rds-tur-hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: 22px;
    }

    .rds-tur-hero-content {
        order: 1;
        padding: 68px 24px 30px;
    }

    .rds-tur-hero-image {
        order: 2;
        min-height: 330px;
    }

        .rds-tur-hero-image img {
            min-height: 330px;
            padding: 16px;
        }

    .rds-tur-language-switch {
        top: 18px;
        right: 18px;
    }

    .rds-tur-hero-content h1 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .rds-tur-hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .rds-tur-hero-points {
        margin-top: 22px;
    }

        .rds-tur-hero-points span {
            font-size: 11px;
        }

    .rds-tur-heading {
        display: block;
        margin: 50px 0 26px;
    }

    .rds-tur-heading-line {
        display: none;
    }

    .rds-tur-small-title {
        font-size: 10px;
    }

    .rds-tur-heading h2 {
        font-size: 29px;
    }

    .rds-tur-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rds-tur-card-body {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .rds-tur-info {
        order: 1;
        padding: 19px 18px 21px;
    }

    .rds-tur-image {
        order: 2;
        min-height: 300px;
        border-top: 1px solid #edf0f1;
        border-left: 0;
    }

    .rds-tur-image-inner {
        min-height: 300px;
        padding: 20px 18px;
    }

    .rds-tur-image img {
        max-height: 280px;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .rds-tur-shell {
        width: calc(100% - 14px);
        padding-top: 20px;
    }

    .rds-tur-hero {
        border-radius: 18px;
    }

    .rds-tur-hero-content {
        padding: 64px 18px 24px;
    }

        .rds-tur-hero-content h1 {
            font-size: 30px;
            line-height: 1.08;
        }

        .rds-tur-hero-content p {
            margin-top: 17px;
            font-size: 13px;
        }

    .rds-tur-language-switch {
        top: 14px;
        right: 14px;
    }

        .rds-tur-language-switch .rds-lang-btn {
            min-width: 69px;
            padding: 8px 10px;
            font-size: 11px;
        }

    .rds-tur-hero-image,
    .rds-tur-hero-image img {
        min-height: 260px;
    }

        .rds-tur-hero-image img {
            padding: 12px;
        }

    .rds-tur-hero-image-label {
        left: 14px;
        bottom: 14px;
        padding: 10px 12px;
    }

    .rds-tur-heading h2 {
        font-size: 25px;
    }

    .rds-tur-heading p {
        font-size: 12px;
    }

    .rds-tur-card {
        border-radius: 17px;
    }

    .rds-tur-card-top {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .rds-tur-season-badge {
        display: none;
    }

    .rds-tur-number {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
        font-size: 13px;
    }

    .rds-tur-title-area h3 {
        font-size: 18px;
    }

    .rds-tur-local-name {
        font-size: 10px;
    }

    .rds-tur-info {
        padding: 16px 14px 18px;
    }

    .rds-tur-mini-switch {
        margin-bottom: 15px;
    }

        .rds-tur-mini-switch .rds-lang-btn {
            min-width: 65px;
            padding: 7px 9px;
        }

    .rds-tur-spec-list li {
        padding: 9px 0;
        gap: 8px;
    }

    .rds-tur-spec-list span,
    .rds-tur-spec-list strong {
        font-size: 10.5px;
    }

    .rds-tur-image,
    .rds-tur-image-inner {
        min-height: 255px;
    }

        .rds-tur-image img {
            max-height: 235px;
        }

    .rds-tur-image-caption {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        font-size: 8px;
    }
}


/* ============================================================
   VERY SMALL DEVICES
   ============================================================ */

@media (max-width: 350px) {

    .rds-tur-hero-content h1 {
        font-size: 27px;
    }

    .rds-tur-language-switch .rds-lang-btn {
        min-width: 62px;
        padding: 7px 8px;
        font-size: 10px;
    }

    .rds-tur-spec-list span,
    .rds-tur-spec-list strong {
        font-size: 9.5px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    #rdsTurProducts *,
    #rdsTurProducts *::before,
    #rdsTurProducts *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
