/* DiffDish product palette, layered over apps.css.
   Warm cream / terracotta / sage — kitchen-table, not clinical tech.
   Scoped to body.diffdish so the rest of Hodegos Apps keeps the house style. */

body.diffdish {
    --cream: #FDF6EC;
    --terracotta: #E07A3A;
    --terracotta-dark: #C9652A;
    --terracotta-deep: #B85720;  /* darker fill for white text — meets WCAG AA */
    --sage: #6B8F5E;
    --espresso: #2C1A0E;

    background-color: var(--cream);
    color: var(--espresso);
}

body.diffdish a { color: var(--terracotta-dark); }
body.diffdish a:hover, body.diffdish a:focus { color: var(--terracotta); }

body.diffdish .hero {
    background-color: var(--espresso);
    color: var(--cream);
}

body.diffdish .hero .lead { color: #E8D9C8; }

body.diffdish .hero .app-icon-lg {
    width: 104px;
    height: 104px;
    border-radius: 23px;          /* ~22%, matching Android's squircle mask */
    display: block;
    margin: 0 auto 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

body.diffdish .hero .version {
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: #A08A76;
    margin-top: 30px;
}

body.diffdish .btn {
    background-color: var(--terracotta-deep);
    color: #fff;
}

body.diffdish .btn:hover, body.diffdish .btn:focus {
    background-color: #9C4818;
    color: #fff;
}

body.diffdish .btn-ghost {
    background-color: transparent;
    color: var(--cream);
    border: 2px solid rgba(253, 246, 236, .5);
}

body.diffdish .btn-ghost:hover, body.diffdish .btn-ghost:focus {
    background-color: var(--cream);
    border-color: var(--cream);
    color: var(--espresso);
}

body.diffdish section.alt { background-color: #F5E9D9; }

body.diffdish .section-subheading { color: #7A6353; }

body.diffdish .feature h4::before { background-color: var(--terracotta); }
body.diffdish .feature p { color: #6B5647; }

/* The ranking blend — a small visual for how recipes are scored. */

.blend {
    max-width: 640px;
    margin: 0 auto;
}

.blend-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.blend-row .label {
    flex: 0 0 130px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-align: right;
}

.blend-row .bar {
    flex: 1;
    height: 14px;
    border-radius: 7px;
    background-color: rgba(44, 26, 14, .08);
    overflow: hidden;
}

.blend-row .bar span {
    display: block;
    height: 100%;
    border-radius: 7px;
}

.blend-row .pct {
    flex: 0 0 46px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.blend-note {
    font-size: 15px;
    color: #6B5647;
    margin: 8px 0 0 148px;
}

/* Quick & Easy badge */

.bolt {
    display: inline-block;
    background-color: #5A7A4E;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    padding: 4px 10px;
    vertical-align: middle;
}

/* Screenshots.
   These are full Play-listing tiles (1080x1920) with headline text baked in,
   not bare screen grabs — so they need real size to stay legible. Three across
   on desktop, dropping to two then one. */

body.diffdish .shots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

body.diffdish .shots img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    border: none;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(44, 26, 14, .13);
}

@media (max-width: 900px) {
    body.diffdish .shots { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    body.diffdish .shots {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }
}

/* Import methods — three numbered cards */

.ways {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.way {
    flex: 1 1 280px;
    background-color: #fff;
    border: 1px solid rgba(44, 26, 14, .1);
    border-radius: 6px;
    padding: 30px 28px;
}

.way .num {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    background-color: #B85720;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 18px;
}

.way h4 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: none;
    font-size: 18px;
    margin: 0 0 12px;
}

.way p { color: #6B5647; font-size: 15px; margin: 0; }

/* Roadmap list */

.roadmap {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 720px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
}

.roadmap li {
    flex: 1 1 300px;
    font-size: 15px;
    color: #6B5647;
    padding-left: 26px;
    position: relative;
}

.roadmap li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #6B8F5E;
}

/* Price callout */

.price {
    text-align: center;
    background-color: #fff;
    border: 1px solid rgba(44, 26, 14, .1);
    border-radius: 6px;
    padding: 45px 30px;
    max-width: 620px;
    margin: 0 auto;
}

.price .amount {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.price p { color: #6B5647; margin: 0 0 8px; }

@media (max-width: 600px) {
    .blend-row { flex-wrap: wrap; gap: 10px; }
    .blend-row .label { flex: 1 1 100%; text-align: left; }
    .blend-note { margin-left: 0; }
}
