/* ============================================================
   Salteen Product Meta v2 — Frontend CSS
   All classes prefixed sm- to avoid conflicts with theme.
   Uses Salteen brand colours: #C8401A (red), #2B6E2B (green)
============================================================ */

/* ── Eyebrow ─────────────────────────────────────────────── */
.sm-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #2B6E2B;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

/* ── Hindi subtitle ──────────────────────────────────────── */
.sm-hindi {
    font-family: 'Noto Sans Devanagari', 'Tiro Devanagari Hindi', Georgia, serif;
    font-size: 16px;
    color: #888888;
    font-style: italic;
    margin: 0 0 14px 0;
    line-height: 1.5;
}

/* ── USP badge pills (salteen_tags) ──────────────────────── */
.sm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 14px 0;
}
.sm-tag {
    display: inline-flex;
    align-items: center;
    background: #FFF1E6;
    color: #2B6E2B;
    border: 1px solid #d4ebd4;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1.3;
}

/* ── Urgency band ────────────────────────────────────────── */
.sm-urgency {
    background: #FFF3CD;
    border: 1px solid #FDEBC8;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 12px;
    color: #7B4F00;
    margin: 0 0 14px 0;
    line-height: 1.5;
}
.sm-urgency strong {
    font-weight: 700;
    color: #5A3800;
}

/* ── Pincode box ─────────────────────────────────────────── */
.sm-pincode-box {
    background: #ffffff;
    border: 1.5px solid #F0E6D8;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 0 0 14px 0;
}
.sm-pin-title {
    font-size: 12px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}
.sm-pin-row {
    display: flex;
    gap: 8px;
}
.sm-pin-row input {
    flex: 1;
    min-width: 0;
    border: 1.5px solid #F0E6D8;
    border-radius: 7px;
    padding: 9px 12px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
    background: #fff;
    color: #1A1A1A;
}
.sm-pin-row input:focus {
    border-color: #C8401A;
}
.sm-pin-row button {
    background: #C8401A;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.15s;
    line-height: 1;
}
.sm-pin-row button:hover {
    background: #b03516;
}
#sm-pin-result {
    font-size: 12px;
    font-weight: 600;
    margin: 7px 0 0 0;
    min-height: 18px;
    line-height: 1.5;
}

/* ── Flavour Profile ─────────────────────────────────────── */
.sm-flavour {
    background: #ffffff;
    border: 1px solid #F0E6D8;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 0 0 14px 0;
}
.sm-flavour-title {
    font-size: 12px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 11px 0;
}
.sm-fl-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
}
.sm-fl-row:last-child {
    margin-bottom: 0;
}
.sm-fl-label {
    font-size: 12px;
    color: #666666;
    width: 88px;
    flex-shrink: 0;
    line-height: 1.3;
}
.sm-fl-track {
    flex: 1;
    height: 6px;
    background: #F0E6D8;
    border-radius: 3px;
    overflow: hidden;
}
.sm-fl-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}
.sm-fl-level {
    font-size: 11px;
    color: #999999;
    width: 72px;
    flex-shrink: 0;
    text-align: right;
    line-height: 1.3;
}

/* ── Tasting notes ───────────────────────────────────────── */
.sm-tasting {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px 0;
}
.sm-taste-pill {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #F0E6D8;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.3;
}

/* ── USP Icon Cards ──────────────────────────────────────── */
.sm-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 0 0 14px 0;
}
.sm-usp-card {
    background: #ffffff;
    border: 1px solid #F0E6D8;
    border-radius: 10px;
    padding: 11px 8px;
    text-align: center;
}
.sm-usp-icon {
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 1.3;
    display: block;
}
.sm-usp-text {
    font-size: 10px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.35;
}
@media (max-width: 600px) {
    .sm-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── WhatsApp button ─────────────────────────────────────── */
.sm-wa-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px 0;
    flex-wrap: wrap;
}
.sm-wa-label {
    font-size: 12px;
    color: #666666;
}
.sm-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.15s;
    line-height: 1.3;
}
.sm-wa-btn:hover {
    background: #1db954;
}

/* ── Process Strip ───────────────────────────────────────── */
.sm-process {
    background: #FFF1E6;
    padding: 40px 0;
    margin: 0;
}
.sm-proc-eyebrow {
    font-size: 10px;
    font-weight: 700;
    color: #C8401A;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}
.sm-proc-title {
    font-size: 24px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.sm-proc-sub {
    font-size: 13px;
    color: #666666;
    margin: 0 0 28px 0;
}
.sm-proc-steps {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
/* Horizontal connector line */
.sm-proc-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #F0D8C0;
    z-index: 0;
}
.sm-proc-step {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}
.sm-proc-num {
    width: 40px;
    height: 40px;
    background: #C8401A;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}
.sm-proc-step-title {
    font-size: 12px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 4px 0;
    line-height: 1.4;
}
.sm-proc-step-desc {
    font-size: 11px;
    color: #666666;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 768px) {
    .sm-process {
        padding: 28px 0;
    }
    .sm-proc-steps {
        flex-direction: column;
        gap: 16px;
    }
    .sm-proc-steps::before {
        display: none;
    }
    .sm-proc-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 14px;
        padding: 0;
    }
    .sm-proc-num {
        margin: 0;
        flex-shrink: 0;
    }
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.sm-faq {
    margin: 0 0 16px 0;
}
.sm-faq-item {
    border: 1px solid #F0E6D8;
    border-radius: 10px;
    margin-bottom: 6px;
    overflow: hidden;
    background: #ffffff;
}
.sm-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    line-height: 1.4;
    transition: background 0.15s;
}
.sm-faq-q:hover {
    background: #FFF8F0;
}
.sm-faq-icon {
    font-size: 18px;
    color: #C8401A;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}
.sm-faq-a {
    padding: 0 16px 13px 16px;
    font-size: 13px;
    color: #666666;
    line-height: 1.75;
}
.sm-faq-a[hidden] {
    display: none;
}
