﻿/* Basic page shell */
.home {
    background: #f3f3f3;
    min-height: 100vh;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Top header */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid #d0d0d0;
}

.top-header-inner {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-logo {
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.brand-text {
    color: #6d5130;
    text-shadow: 0 1px 0 #fff;
}

.brand-tag {
    color: #b58b5a;
    font-weight: 700;
    font-style: italic;
}

/* Pill nav */
.pill-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.pill {
    text-decoration: none;
    color: #3a3a3a;
    background: #f7f7f7;
    border: 2px solid #8c7fb3;
    border-radius: 18px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 13px;
}

    .pill.active {
        background: rgba(0,0,0,0.08);
        /*background: #e9e6f6;*/
    }
.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
}

    .nav-link.active {
        color: #ffffff;
        background-color: #2563eb;
    }
/* Secondary nav (purple) */
.secondary-nav {
    background: #3a2a78;
    color: #fff;
}

.secondary-nav-inner {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.secondary-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

    .secondary-link:hover {
        text-decoration: underline;
    }

.sep {
    opacity: 0.8;
}

/* Body grid */
.home-body {
    padding: 24px 0 10px;
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    align-items: start;
}

@media (max-width: 900px) {
    .home-grid {
        grid-template-columns: 1fr;
    }
}

/* Card base */
.card {
    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.card-header {
    background: #e6e6e6;
    padding: 12px;
    border-bottom: 1px solid #bdbdbd;
}

.card-title {
    text-align: center;
    font-weight: 900;
    font-size: 20px;
}

.card-body {
    padding: 16px;
}

.card-footer {
    padding: 10px 14px;
    background: #2c2c2c;
    color: #fff;
    font-weight: 700;
}

/* Search card */
.search-card {
    max-width: 520px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    align-items: center;
}

    .form-row.center {
        justify-content: center;
    }

.select, .input {
    width: 100%;
    height: 34px;
    border: 1px solid #8b8b8b;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 14px;
    background: #fff;
}

.chip {
    width: 62px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #7d7d7d;
    background: #d7d7ff;
    font-weight: 900;
    font-size: 11px;
    line-height: 1.1;
}

.postal-row .label {
    min-width: 130px;
    font-weight: 700;
}

.check {
    display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 700;
}

.btn-search {
    background: #d8cfb0;
    border: 2px solid #6b5d3b;
    border-radius: 3px;
    padding: 10px 22px;
    font-weight: 900;
    cursor: pointer;
}

/* Promo */
.promo-card {
}

.promo-hero {
    height: 140px;
    background: linear-gradient(135deg, #3a3a3a, #1f1f1f);
    color: #fff;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-brand {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.3px;
}

.promo-sub {
    font-weight: 800;
    font-style: italic;
    opacity: 0.9;
    margin-top: 6px;
}

.promo-body {
    padding: 14px;
}

.promo-headline {
    font-weight: 900;
    margin-bottom: 10px;
}

.promo-new {
    color: #c51616;
    font-weight: 900;
    font-style: italic;
    font-size: 22px;
    margin: 10px 0;
    text-align: center;
}

.promo-text {
    text-align: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.promo-cta {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #5b7a2b;
    background: #8fc74a;
    font-weight: 900;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background: #f3f3f3;
    padding: 18px 0 30px;
}

.footer-inner {
    text-align: center;
    color: #222;
}

.footer-links a {
    color: #222;
    text-decoration: underline;
    font-weight: 700;
}

.footer-fineprint {
    margin-top: 12px;
    font-size: 12px;
}
