/* Shipt Bot - green and blue theme */
.hero-section {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 214, 102, 0.24), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(0, 156, 222, 0.32), transparent 30%),
        linear-gradient(135deg, #003c32 0%, #007a3d 48%, #00b140 100%);
    overflow: hidden;
}

.feature-icon {
    color: #00B140;
}

.download-btn {
    background: #00B140;
    box-shadow: 0 5px 15px rgba(0, 177, 64, 0.38);
}

.download-btn:hover {
    background: #008F36;
    box-shadow: 0 8px 20px rgba(0, 177, 64, 0.52);
}

.stat-number {
    color: #00B140;
}

.shipt-phone {
    background: #0f172a;
    border: 10px solid rgba(255, 255, 255, 0.9);
    border-radius: 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    color: #0f172a;
    margin: 0 auto;
    max-width: 350px;
    overflow: hidden;
}

.shipt-screen {
    background: linear-gradient(180deg, #f8fff9 0%, #eefcf5 100%);
    min-height: 560px;
    padding: 22px;
}

.shipt-status-bar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
}

.shipt-app-header {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.shipt-app-icon {
    align-items: center;
    background: #00B140;
    border-radius: 14px;
    color: #fff;
    display: inline-flex;
    font-size: 1.8rem;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.shipt-app-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}

.shipt-app-subtitle {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0;
}

.shipt-order-card {
    background: #fff;
    border: 1px solid rgba(0, 177, 64, 0.14);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    margin-bottom: 16px;
    padding: 18px;
}

.shipt-order-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.shipt-pay {
    color: #007a3d;
    font-size: 2rem;
    font-weight: 900;
}

.shipt-pill {
    background: rgba(0, 156, 222, 0.12);
    border-radius: 999px;
    color: #006da1;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 7px 12px;
}

.shipt-order-meta {
    color: #475569;
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.shipt-order-meta span {
    align-items: center;
    display: flex;
    gap: 8px;
}

.shipt-filter-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.shipt-filter-strip span {
    background: #e7f8ed;
    border-radius: 999px;
    color: #007a3d;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 7px 10px;
}

.shipt-claim-button {
    background: #00B140;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    margin-top: 18px;
    padding: 13px;
    text-align: center;
}

.filter-card {
    background: #fff;
    border: 1px solid rgba(0, 177, 64, 0.13);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    height: 100%;
    padding: 24px;
    text-align: center;
}

.filter-card i {
    color: #00B140;
    font-size: 2rem;
}

@media (max-width: 576px) {
    .shipt-screen {
        min-height: 500px;
        padding: 18px;
    }

    .shipt-phone {
        max-width: 310px;
    }

    .shipt-pay {
        font-size: 1.65rem;
    }
}